我有这个代码:
public static void Main(string[] args)
{
if (string.IsNullOrEmpty(args[0])) // Warning : Index was out of the bounds of the array
{
ComputeNoParam cptern = new ComputeNoParam();
cptern.ComputeWithoutParameters();
}
else
{
ComputeParam cpter = new ComputeParam();
foreach (string s in args){...}
}
}
也试过if(args.Length==0)
了,还是不行。
基本上我想知道用户是否用参数调用了程序。如果不是,程序将要求输入。
我怎样才能做到这一点?提前致谢。