Pardon my ignorance but how do you compile a .CS file from a command-prompt window? And how do you execute?
Thanks in advance!
|
|
Pardon my ignorance but how do you compile a .CS file from a command-prompt window? And how do you execute? Thanks in advance!
|
|||
|
|
|
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. |
|||
|
|
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 Finally, many projects are build with build script tools; MSBuild, NAnt, etc. |
||||
|
|
|
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. |
||
|
|