C#

Auto-Property

joo_coding 2025. 11. 3. 10:40
public int Age { get; set; }

⬇️

private int _age;

public int Age
{
    get { return _age; }
    set { _age = value; }
}

 

⬇️

class Student
{
    public string Name { get; set; }
    public int Age { get; set; }
}

// 보통 특별한 경우가 아닌 이상, 이렇게 많이 사용

 

get만 쓰면 읽기 전용