C# コンソールアプリのエントリーポイントを作成する

コンソールアプリでMainメソッド(エントリーポイント)を追加する

partial class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Hello, World!");
    }
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.