property1 [C#] 프로퍼티(Property), 익명 타입 1. 프로퍼티(Property) 자바에서 Getter Setter 를 사용할 때 클래스의 멤버 변수가 많아질 때마다 코드가 길어지는 불편함이 있었다. C#에서의 프로퍼티라는 메서드(?)도 필드(?)도 아닌 이 기능으로 정리하자면 이렇다. class Human { private string name; private int age; public string Name { get { return name; } set { name = value; } } public int Age { get { return age; } set { age = value; } } } 이를 조금 더 단순화 시켜서 이런 식으로 정의할 수 있다. 자동구현 프로퍼티 라고 한다. using System; namespace ConsoleAppl.. 2021. 1. 25. 이전 1 다음