콘솔어플리케이션을 만들고
class program { static void Main(string[] args) // 운영체제에 의해 호출되는 유일한 function { Console.Write("Hello C#"); Console.Writeline("Hello "+ args[0]); // 0 가 찍힌다. argument로 들어오는 인자가 없다는 뜻 Console.ReadKey(); // key 하나를 받기 위해 콘솔창이 기다린다 } }