본문 바로가기

개발자 모드/C#

C# Hello World 출력하기

728x90
using System;

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

 

결과

 

728x90