|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
2 | Edited link format, seemed confused by () | ||
|
I tend to find that most C# developers don't know about 'nullable' types. Basically, primitives that can have a null value.
Set a nullable double, num1, to null, then set a regular double, num2, to num1 or -100 if num1 was null. http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx http://msdn.microsoft.com/en-us/library/1t3y8s4s%28VS.80%29.aspx |
||||
|
1 |
|
||
|
I tend to find that most C# developers don't know about 'nullable' types. Basically, primitives that can have a null value.
Set a nullable double, num1, to null, then set a regular double, num2, to num1 or -100 if num1 was null. http://msdn.microsoft.com/en-us/library/1t3y8s4s(VS.80).aspx |
||||
