c# 출력
![[C#] 표준 출력](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbgBIyq%2FbtqAslphLhA%2FzLRG0ONfKeA3QsJrf10d0k%2Fimg.png)
[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#"); } ..