Search code examples
c#csc

How do i specify the executable file's name with csc?


Is there a csc command line compiler equivalent to g++'s -o switch? Obviously, I have added it to path.


Solution

  • It is simply -out:filename for the C# compiler.