txt编写第一个控制台程序
建立txt:
using System;
class Hello
{
static void Main(string[] args){
Console.WriteLine("Hello,World,{0},{1}",args[0],args[1]);
Console.ReadKey();
}
}
在cmd中对这个编译,C:\WINDOWS\Microsoft.NET\Framework\v4.0.30128\csc.exe -out:E:\NET1\Hello.cs E:\NET1\Hello.exe
enter就可以把之前的程序编译好,之后就可以对编译好的exe可执行程序,进行调用:E:\NET1\Hello.exe args0 args1
调用成功就会输出:Hello,World,args0,args1