c#을 공부하다가 readonly가 존재한 다는 것을 알았다. readonly는 읽을 수만있다, 그럼 const랑 무엇이 다른가 ?
readonly는 컴파일타임에 변수가 결정되지않는다. 그렇지만 const는 컴파일타임에 결정이된다.
'c#' 카테고리의 다른 글
추상 vs 인터페이스 (0) | 2022.12.05 |
---|---|
c#의 init access 문법과 top level (0) | 2022.07.24 |
Immutable (0) | 2022.07.07 |
MessagePack (0) | 2022.07.06 |
Delegate, Property, nullable, exception, event (0) | 2022.07.03 |