我下面這個教程:命令行編譯的C#代碼提供了錯誤
http://www.csharp-station.com/Tutorials/Lesson01.aspx
我這貼到一個文本文件,將其命名爲Welcome.cs:
// Namespace Declaration
using System;
// Program start class
class WelcomeCSS
{
// Main begins program execution.
static void Main()
{
// Write to console
Console.WriteLine("Welcome to the C# Station Tutorial!");
}
}
然後我進入命令提示符並指向文件的目錄。我輸入csc.exe Welcome.cs
和得到這個錯誤信息:
csc.exe is not recognized as internal or external command
我使用Visual Studio 2008
我試圖移動CSC.EXE到Windows目錄下,現在我收到此錯誤:
fatal error cs2018: unable to find messages file 'cscompui.dll'
如何從命令行編譯我的C#代碼?
僅供參考......你不應該移動CSC .exe到Windows文件夾。它有太多的依賴關係,它將無法找到。 – David 2010-08-06 16:01:14