An open API service indexing awesome lists of open source software.

https://github.com/beangreen247/c-sharp-made-easy

Code used in my C# tutorial series
https://github.com/beangreen247/c-sharp-made-easy

beangreen beangreen247 code csharp debian easy linux made mono monodevelop tutorial vim windows

Last synced: 5 months ago
JSON representation

Code used in my C# tutorial series

Awesome Lists containing this project

README

        

# C# Made Easy
Code used in my C# tutorial series

https://www.youtube.com/playlist?list=PLL5t1QVuj4FwQREWQcobrLtytfCxDdt_3

## Setup on Windows

Install dotNet framework
https://dotnet.microsoft.com/download/dotnet-framework

Change directory to the framework location
```
cd C:\Windows\Microsoft.NET\Framework\v(version number here)
```
Compiling using csc.exe
```
csc.exe (path to source code file here)
```
To run the app just type in the name of the app

Example
```
testapp.exe
```
## Setup on Linux
```
sudo apt install mono* -y
```
Compiling code while on Linux
```
mono-csc "file_name_here".cs
```
To run the app just type in mono and the name of the app

Example
```
mono testapp.exe
```