5 lines
61 B
C#
5 lines
61 B
C#
|
|
int? answer = null;
|
||
|
|
if (answer == null) {
|
||
|
|
answer = 42;
|
||
|
|
}
|