为了账号安全,请及时绑定邮箱和手机立即绑定

c#函数中 static void Main(String[ ] args )括号中的参数作用?

c#函数中 static void Main(String[ ] args )括号中的参数作用?

C#
呼如林 2018-12-03 10:06:35
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;整形

查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 668 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信