비주얼스튜디오 2022에서 프로젝트를 "콘솔 앱(.NET Framework)"를 선택해서 만들 때 자동으로 생성되어 있는 코드입니다. 콘솔 앱(.NET Framework) 프로젝트 생성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { } } } 다음은 "콘솔 앱"을 선택해서 프로젝트를 생성해 보겠습니다. 새 프로젝트 구성 "콘솔 앱" - 최상위 문 사용 안 함 "최상위문 사용 안 함"을 체크하지 않고 ..