第一个C#程序
[csharp]using System;
class Program
{
public static void Main()
{
Console.WriteLine("HelloWorld.");
}
}
首先要安装好.NET Framework SDK环境,在开始按钮所有程序VS菜单下打开命令提示工具,把以上代码存在其根目录下,命令为 hello.cs ,然后在CMD下输入:csc hello.cs,即可成功编译。
CSC.exe把Visual C#程序代码编译成IL文件时,有着很多参数和开关选项。
命令行示例
编译 File.cs 以产生 File.exe:
csc File.cs
编译 File.cs 以产生 File.dll:
csc /target:library File.cs
编译 File.cs 并创建 My.exe:
csc /out:My.exe File.cs
通过使用优化和定义 DEBUG 符号,编译当前目录中所有的 C# 文件。输出为 File2.exe:
csc /define:DEBUG /optimize /out:File2.exe *.cs
编译当前目录中所有的 C# 文件,以产生 File2.dll 的调试版本。不显示任何徽标和警告:
csc /target:library /out:File2.dll /warn:0 /nologo /debug *.cs
将当前目录中所有的 C# 文件编译为 Something.xyz(一个 DLL):
csc /target:library /out:Something.xyz *.cs
补充:软件开发 , C# ,