5. 솔루션 탐색기에서 Program.cs 파일을 PropertyNote.PropertyNote.cs 파일로 이름을 변경하고, 이미 만든 모든 코드를 삭제한 후 다음과 같이 프로그램을 만듭니다.
//PropertyNote.PropertyNote.cs using System; namespace PropertyNote { class PropertyNote { static void Main(string[] args) { //① Car 클래스(정적) 사용 Car.Color = "Black"; //필드 사용 Car.Type = "세단"; //속성 사용 Console.WriteLine($"차종 : {Car.Type}, 색상 : {Car.Color}"); //② Person 클래스(인스턴스) 사용 Person person = new Person("박용준"); person.BirthYear = (DateTime.Now.Year - 21); //21살로 고정 Console.WriteLine($"이름 : {person.Name}, 나이 : {person.Age}"); } } }