[C#] 프로퍼티클래스를 작성하다보면 private 필드를 선언해야할 경우가 많다.이 private 필드를 다른 클래스에서 접근하게 하려면 getter, setter 메소드를 따로 정의해 줘야 하는 데 여간 귀찮은 일이 아닐 수 없다.class MyClass { private int myInt; public int GetMyInt() { return myInt; } public void SetMyInt(int newInt) { this.myInt = newInt; } } class MainApp { static void Main() { MyClass instance = new MyClass(); instance.SetMyInt(5); Console.WriteLine(instance.GetMyInt..