5
调试时如何使用参数启动程序?
我想在Visual Studio 2008中调试程序。问题是,如果不获取参数,它将退出。这是从主要方法: if (args == null || args.Length != 2 || args[0].ToUpper().Trim() != "RM") { Console.WriteLine("RM must be executed by the RSM."); Console.WriteLine("Press any key to exit program..."); Console.Read(); Environment.Exit(-1); } 我不想将其注释掉,然后在编译时再注释掉。调试时如何使用参数启动程序?它被设置为启动项目。