4.1 출력문
명령 프롬프트(터미널)에 문자열을 한 줄씩 출력하려면 System.Console.WriteLine(); 코드를 사용합니다. WriteLine() 메서드는 반드시 괄호를 사용해야 합니다. 다음은 이 메서드의 사용 예입니다.
//WriteLineDemo1.cs class WriteLineDemo1 { static void Main() { System.Console.WriteLine("명령 프롬프트에 출력할 내용"); } }
앞에서 언급했던 것처럼 C# 코드 위쪽에 using System; 코드 구문을 사용하여 다음과 같이 줄여서 표현할 수 있습니다.
//WriteLineDemo2.cs using System; class WriteLineDemo2 { static void Main() { Console.WriteLine("명령 프롬프트에 출력할 내용"); } }