본문 바로가기

PROGRAMMING LANGUAGE/C#

헬로우 월드

using System;

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

C#의 요소들 클래스 단위로 존재한다.

'PROGRAMMING LANGUAGE > C#' 카테고리의 다른 글

StringBuilder  (0) 2022.02.22
인덱서  (0) 2022.02.21
string  (0) 2022.01.20
10진수, 2진수, 16진수로 변수에 값 할당하기  (0) 2022.01.19
Console 기능  (0) 2022.01.19