carlAlex
8/10/2016 - 8:32 AM

TreeHouse

TreeHouse

compile with debugging info
mcs -debug Program.cs

Compile all:
mcs *.cs

Compile with different name:

mcs -out:TreehouseDefense.exe *.cs

(creates a file called Program.exe.mdb in addition to Program.exe. The file contains additional infomation for the debugger to use.

To run the program with the debugger, run this command:

mono --debug Program.exe

ls

Delete file:
rm (filename)