我想在 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);
}
我不想将其注释掉,然后在编译时重新添加。调试时如何使用参数启动程序?它被设置为启动项目。