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.
当我调试或运行我的代码时,我在 Visual Studio 中看到一个浅蓝色条显示“就绪”,但命令窗口没有打开。我应该怎么做才能出现命令窗口?
您的应用程序可能完成它的工作太快了,以至于您没有注意到命令窗口。Console.ReadKey();在 main 函数的末尾添加。
Console.ReadKey();
那是假设您实际上运行的是 exe 文件。