본문 바로가기
C#

C# 소스코드: Hello World 출력하기

by 드린 2016. 12. 22.

목차

    반응형
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace HelloWorld
    {
        class Hello
        {
            static void Main(string[] args)
            {
                Console.WriteLine("Hello World");
            }
        }
    }
    

    <결과>

    2016/11/06 - [C#] - C# 소스코드: 데이터 리터럴 타입 출력, DateTime객체 생성

    #C# #C# 소스코드 #Hello World 출력하기

    반응형