November 2001
Beginner to intermediate
816 pages
16h 3m
English
The programs in this book were compiled with the Microsoft C# command-line compiler from the .NET Frameworks SDK. For a simple program such as the HowdyPartner program in Listing 2.1, use the following command line:
csc HowdyPartner.cs
The C# compiler name is csc and HowdyPartner.cs is the name of the program. This will create an executable program named HowdyParner.exe in the directory in which you executed the command. Figure 2.2 shows the output from the C# compiler when invoked with the example command line.

Compile multiple files by adding each file to the command line with ...
Read now
Unlock full access