4 lines
106 B
C#
4 lines
106 B
C#
Nullable<int> answer = new Nullable<int>();
|
|
if (!answer.HasValue) {
|
|
answer = new Nullable<int>(42);
|
|
}
|