"프로퍼티 C# 에러"에 해당되는 글 - 1건
Post
public uint dwIndex
{
get
{
// 나중에 데이터 변환해야함..
return dwIndex;
}
set
{
dwIndex = value;
}
}
dwIndex라는 필드에 값을 넣으니 스택오버플로우 에러가 났다.
StackOverflowException: The requested operation caused a stack overflow.
MsgText.set_dwIndex (UInt32 value) (at Assets/1_Scripte/Data/MsgText.cs:17)
MsgText.set_dwIndex (UInt32 value) (at Assets/1_Scripte/Data/MsgText.cs:17)
MsgText.set_dwIndex (UInt32 value) (at Assets/1_Scripte/Data/MsgText.cs:17)
MsgText.set_dwIndex (UInt32 value) (at Assets/1_Scripte/Data/MsgText.cs:17)
...
확인해보니 dwIndex는 선언된 변수가 아니라 자기가 가지고 있는 속성? 이고
그 속성에 값을 넣어주므로 계속 set이 호출된다는 것이다.
dwIndex = value;
=> 어? dwIndex 속성에 값을 넣어주네? set 프로퍼티 호출!
dwIndex = value;
=> 어? dwIndex 속성에 값을 넣어주네? set 프로퍼티 호출!
public uint INDEX
{
get
{
// 나중에 데이터 변환해야함..
return dwIndex;
}
set
{
dwIndex = value;
}
}
'이전게시판 > C#' 카테고리의 다른 글
StreamReader 한글깨짐 오류 (0) | 2018.08.10 |
---|---|
배열보다 리스트가 좋은 이유 (0) | 2017.04.30 |
C# var, 무명메서드, 람다식, LINQ 예제 (0) | 2016.02.18 |