Нашли опечатку? Выделите ее мышкой и нажмите Ctrl+Enter
Название: C# 2008: ускоренный курс для профессионалов CD
Автор: Нэш Т.
Аннотация:
"This zip file includes virtually all of the source code in Accelerated C# 2008. Not every source file contains a static Main() method, therefore, those files will not compile. For the files that do compile, they can typically be built by invoking the C# compiler (csc.exe) from the command line as shown below:
csc /debug+ Where is replaced with the C# file you want to compile. Of course, /debug+ is optional, but I’m assuming you may want to step through the code using cordbg or DbgCLR.
I have included a file named build.proj which is an msbuild project file. You can use it to build all of the code snippets in one operation by executing the following command from a Visual Studio 2008 command prompt:
msbuild /t:Compile
If you examine the msbuild project file, you will see that you can also build the code from each individual chapter if you like.
Have fun!" from Author