Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,从命令提示符下,我需要在调试器下启动带有一些开关标志的 exe。我该怎么做?
这是一个来自 c/c++ 的 exe,使用我需要调试的 VS2005 环境构建。我将一些标志传递给这个 exe 来执行一些事情。
您需要提供有关您的开发环境的更多信息才能获得具体答案。
例如,对于 Visual Studio 中的 C# 项目,您可以右键单击项目 -> 属性,然后在“调试”选项卡中填写“命令行参数”字段。
我想我已经成功了。右键单击项目-> 属性,然后在“调试”选项卡中填写“命令行参数”字段。bkane 解决方案有效。谢谢。