some helloworld crap

This commit is contained in:
2023-12-05 21:24:43 -05:00
parent 459b790012
commit b3ae622bd0
3 changed files with 78 additions and 0 deletions

10
csharphelloworld.txt Normal file
View File

@ -0,0 +1,10 @@
https://www.geeksforgeeks.org/how-to-compile-decompile-and-run-c-code-in-linux/
Use mcs compiler to create a windows executable csharphelloworld.exe from csharphelloworld.cs
mcs -out:csharphelloworld.exe csharphelloworld.cs
mono csharphelloworld.exe
To decompile this executable file run the following command:
monodis --output=csharphelloworld.decomp.cs csharphelloworld.exe