CHashtag

[C#] nullable System.InvalidOperationException 해결법 본문

C#

[C#] nullable System.InvalidOperationException 해결법

HyoSeong 2021. 2. 18. 00:50
반응형

결론만 알려드리겠습니다.

int defaultValue = 999;
int? nullableInt = null;

// int wrongResult = (int)nullableInt;
// System.InvalidOperationException here

int result = nullableInt.GetValueOrDefault(defaultValue);
// 999

 

감사합니다.

반응형