Remark :
IDE0044 필드를 읽기 전용으로 만들기
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
class Age { readonly int year; Age(int year) { this.year = year; } void ChangeYear() { //year = 1967; // Compile error if uncommented. } } |