Anna belly belly hard/C#

[C# 개념] 2.1 Hello, World !

bibiana 각선행 2023. 6. 21. 13:44
반응형
using System;
using System.Data;
using static System.Console;

namespace Hello
{
    class MainApp
    {
       // 프로그램 실행이 시작되는 곳
       static void Main(string[] args)
        {
            if(args.Length == 0)
            {
                Console.WriteLine("사용법 : Hello .exe <이름>");
                return;
            }

            WriteLine("Hello, {0}!", args[0]);
        }
    }
}
반응형