jiegenghua / paper-reading

0 stars 0 forks source link

c# #33

Open jiegenghua opened 4 years ago

jiegenghua commented 4 years ago

how to compile c# using ubuntu. 1. install mono-complete sudo apt install mono-complete 2. save the c# code as file.cs 3. use the mcs compiler and create a windows executable named file.exe from the source file.cs mcs -out:file.exe file.cs 4. run the file.exe with mono mono file.exe

jiegenghua commented 4 years ago

The way for me to open sublime in ubuntu terminal subl filename

jiegenghua commented 4 years ago

Something about c sharp GUI learning https://www.c-sharpcorner.com/UploadFile/201fc1/guide-for-building-C-Sharp-apps-on-ubuntu-monoproject-introducti/ f5 run the project