我正在运行 Visual Studio 和 CSScript。我的程序非常简单。
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
但是,当我尝试运行它时,错误消息显示:
CS-Script is busy.
编辑:@TheGeneral 提到我忘了包括我是如何运行程序的,这是一个非常有效的问题。我在 Visual Studio 中使用 coderunner 运行程序。