해당 object의 특징.
첫글자는 대문자로 작성
public int Hp
{
get{return hp;}
set{
hp = value;
if(hp<=0)
{
Die()
}
}
}
이런 식?
'C#' 카테고리의 다른 글
확장메소드 (0) | 2022.06.15 |
---|---|
Singleton Pattern (0) | 2022.06.14 |
foreach / Collection (0) | 2022.06.14 |
Interface (0) | 2022.06.14 |
abstract (0) | 2022.06.14 |