下面由我给大家讲解一下如何 配置C#命令行编译器
1.配置C#命令行编译器:
我的电脑 —〉高级 —〉环境变量 —〉Path —〉添加";C:\Windows\Microsoft.NET\Framework\v2.0.50727"(Path的***一个路径虽版本
的改变而改变)。csc.exe(C#命令行编译器)就放在该目录下。通过csc /?来查看所有参数。
2.配置其它.NET命令行工具
配置C#命令行编译器完成后,需要配置其他命令行工具。我的电脑 —〉高级 —〉环境变量 —〉Path —〉添加";D:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin"(Path随安装目录的改变而改变,如果安装在C:\,则为";C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin"
3.通过csc命令行编译器来编译C#文件,以下为一个例子
1)在D盘下新建一个名为test.txt文本文件,输入以下文本后保存为test.cs文件
- //一个简单的C#应用程序.
- usingSystem;
- classTestApp
- {
- publicstaticvoidMain()
- {
- Console.WriteLine("Test!1,2,3");
- Console.ReadKey();
- }
- }
2)运行 —〉cmd —〉D:\ —〉csc D:\test.cs, 编译成功后在D盘下生成test.exe可执行文件
3)输入test.exe,回车,显示结果(Test! 1,2,3)
4.接下来通过引入System.Windows.Forms命名空间来生成Windows Forms程序,test.cs
修改为如下后再次编译
- //一个简单的C#应用程序.
- usingSystem;
- //一定要加上下面一行
- usingSystem.Windows.Forms;
- classTestApp
- {
- publicstaticvoidMain()
- {
- Console.WriteLine("Test!1,2,3");
- MessageBox.Show("Hello...","Application");
- Console.ReadKey();
- }
- }
5.使用csc.exe编译多个源文件
- //HelloMessage.cs
- usingSystem;
- usingSystem.Windows.Forms;
- classHelloMessage
- {
- publicvoidSpeak()
- {
- MessageBox.Show("Hello");
- }
- }
- //Test.cs
- usingSystem;
- classTestApp
- {
- publicstaticvoidMain()
- {
- Console.WriteLine("Testing!1,2,3");
- HelloMessageh=newHelloMessage();
- h.Speak();
- }
- }
参数/out:编译结果的存放位置和名称
csc/out:e:\a.exe test.cs HelloMessage.cs
或者编译当前目录下的所有cs文件: csc/out:e:\a *cs
以上就是配置C#命令行编译器的五个步骤。
【编辑推荐】