🔥

Hello World in C#

2021/05/19に公開1

C#でHelloWorldプログラムを作成します。
Visual Studioを開き、コンソールアプリケーションを使用して新しいプログラムを作成します

using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
            Console.ReadKey();
        }
    }
}

ここでコードの説明を含む記事全体を読む Hello World in C#