junmoyo 2018. 2. 18. 23:46

목표 : 

1. Hello World 를 출력하는 Console을 만들어 봅니다. 


소스 코드 : Program.cs 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace _01_HelloWorld

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("Hello World");

        }

    }

}



결과