Main()函数是C#应用程序的入口点,执行这个函数就是执行应用程序。也就是说,在执行过程开始时,会执行Main()函数,在Main()函数执行完毕时,执行过程就结束了。
Main()函数可以使用如下4个版本:
static void Main()
static void Mian(String[] args)
static int Main()
static int Main(String args)
Main()可选参数args是从应用程序的外部接受信息的方法。这些信息在运行期间指定,其形式是命令行参数。
示例:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestArgs
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("{0} command line arguments were specified:",args.Length);
foreach (string arg in args)
{
Console.WriteLine(arg);
}
Console.ReadKey();
}
}
}
输入参数有2中方法:
1)通过IDE的项目属性提供参数
在项目上面右键点击属性,然后调试,在命令行参数窗口里输入要输入的参数,如下图所示:
这是一种很便捷的方式,只要在IDE中运行程序,就可以使用相同的命令行参数,无需每次都在命令行提示窗口中输入它们。
2)在项目输出所在目录(D:TestArgsTestArgsinDebug)下代开命令行窗口,输入下述代码,也可以得到相同的结果:
TestArgs 1024 test "good"
如图:
注意:每个参数都用空格分开,如果参数包含空格,就可以用双引号把参数括起来,这样才不会吧这个参数解释为多个参数