vote up 4 vote down star

Pardon my ignorance but how do you compile a .CS file from a command-prompt window? And how do you execute?

Thanks in advance!

flag

No need to apologise, it's a good question. It's surprising how many .NET programmers would have never compiled a .NET program using anything but Visual Studio. – Ash Feb 16 at 12:33

3 Answers

vote up 9 vote down check

CSC.exe is the CSharp compiler and can be used to compile from the command prompt. The output can be an executable (.exe) if you use /target:exe.

To run it, simply type the name of the output executable. (Ensure you have a static Main() method defined in one of your classes to act as the "entry point").

This article on MSDN goes in to more detail.

If you have Visual Studio installed, in the Start menu (under Visual Studio Tools) you can open a "Visual Studio Command Prompt" that will set up all required environment and path variables for command line compilation.

While it's very handy to know of this, you should combine it with knowledge of some sort of build tool such as NAnt, MSBuild, FinalBuilder etc. These tools provide a complete build environment, not just the basic compiler.

link|flag
if I remember correctly, you can only compile to and exe if you have a static class with a Main method. – ck Feb 16 at 12:46
The compiler warns you these days if you haven't, but good point I'll add that to the answer, thanks. – Ash Feb 16 at 13:00
vote up 2 vote down

While it is definitely a good thing knowing how to build at the command line, for most work it might be easier to use an IDE. The C# express edition is free and very good for the money ;-p

Alternatively, things like snippy can be used to run fragments of C# code.

Finally - note that the command line is implementation specific; for MS, it is csc; for mono, it is gmcs and friends.... Likewise, to execute: it is just "exename" for the MS version, but typically "mono exename" for mono.

Finally, many projects are build with build script tools; MSBuild, NAnt, etc.

link|flag
1  
I do use the IDE. But I needed to know. It just doesn't feel right not knowing! Thanks a lot for your response. – ZiG Feb 16 at 13:31
vote up 1 vote down

You can build your class files within the VS Command prompt (so that all required environment variables are loaded), not the default Windows command window.

To know more about command line building with csc.exe (the compiler), see this article.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.