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
- Host: GitHub
- URL: https://github.com/beangreen247/c-sharp-made-easy
- Owner: BeanGreen247
- Created: 2020-01-20T22:08:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T18:01:45.000Z (about 5 years ago)
- Last Synced: 2025-02-15T08:32:12.421Z (5 months ago)
- Topics: beangreen, beangreen247, code, csharp, debian, easy, linux, made, mono, monodevelop, tutorial, vim, windows
- Language: C#
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C# Made Easy
Code used in my C# tutorial serieshttps://www.youtube.com/playlist?list=PLL5t1QVuj4FwQREWQcobrLtytfCxDdt_3
## Setup on Windows
Install dotNet framework
https://dotnet.microsoft.com/download/dotnet-frameworkChange 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 appExample
```
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 appExample
```
mono testapp.exe
```