C#프로그래밍

HelloWorld

다모아 2024. 6. 25. 15:45
internal class Program
{
    static void Main(string[] args)
    {
        //HelloWorld! 를 출력
        Console.Write("HelloWorld!");
    }
}

 

결과화면

'C#프로그래밍' 카테고리의 다른 글

오버워치 C# 프로그래밍  (0) 2024.06.27
결합연산자  (0) 2024.06.25
주말과제 학교만들기 저장 불러오기 보상  (0) 2023.07.31
주말과제 미션만들기 [학교]  (0) 2023.07.31
FindItemName, Find, List  (0) 2023.07.31