c#函数中 static void Main(String[ ] args )括号中的参数作用?
1 回答
暮色呼如
TA贡献1853条经验 获得超9个赞
额 这个就是接受参数的意思。我们知道,在程序里面调用外部exe文件时,后面可以加参数。那么这个参数的格式就取决于你这个括号里面参数的格式。比如有一个 text.exe,程序入口这样写:static void Main(String args)那么调用这个程序就可以 Process proc = new Process(); proc.StartInfo.FileName = @"text";proc.StartInfo.Arguments = "参数“;字符串static void Main(String[] args)那么调用这个程序就可以 Process proc = new Process(); proc.StartInfo.FileName = @"text";proc.StartInfo.Arguments = "{”1“,”2“}“;数组static void Main(int args)那么调用这个程序就可以 Process proc = new Process(); proc.StartInfo.FileName = @"text";proc.StartInfo.Arguments = 1;整形
- 1 回答
- 0 关注
- 668 浏览
添加回答
举报
0/150
提交
取消