C#에서는 출력할 때 Console.WriteLine을 사용한다. using System; using static System.Console; // => WriteLine(); using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace project1 { internal class Program { static void Main(string[] args) { System.Console.WriteLine("Hello C#"); // 단축키 c + w + tab System.Console.WriteLine(275); Console.WriteLine(275); Write..