我使用visual studio,當我嘗試編譯下面的代碼時,我得到了 2錯誤;C#初級程序
CS0103 The name 'Console' does not exist in the current context
CS0017 C# Program has more than one entry point defined. Compile with /main to specify the type that contains the entry point.
我該如何解決這個問題?
using System;
namespace App2
{
class Class1
{
static void Main()
{
Console.Writeline("Hello");
}
}
}
你只能在你的應用程序中使用1「靜態無效的主要()」,請確保您沒有其中2(也許在另一個類) –
嘗試Console.WriteLine(「Hello」),所以它可以與控制檯一起使用。 –
@WolfgangFeneberg編譯器不理解'Console',更不用說錯誤輸入'Writeline'。 _「當前上下文中不存在名稱」控制檯「**」_ – MickyD