C# 축자 문자열

    [C#] 표준 출력

    [C#] 표준 출력

    1. 핵심 정리 class Program { static void Main(string[] args) { System.Console.WriteLine("Hello, C#"); } } 매번 출력 때마다 저렇게 적는다면 코드의 길이가 길어질 것이다. using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello, C#"); } } 그리고 정말 출력해야 할 양이 많다면 Console조차 빼버릴 수 있다. using System; using static System.Console; class Program { static void Main(string[] args) { WriteLine("Hello, C#"); } ..