暮色呼如
额 这个就是接受参数的意思。我们知道,在程序里面调用外部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;整形