C# 2.0 gives me access to nullable types. This seems very convenient when I want the DateTime variable in the database to be null. Is there anything I should worry about when using nullable types or can I go overboard and make every type I have nullable?
|
|
|
|
|
|
|
Mitch's DBNull not being null is a good point. Also beware of this, which is legal C# but will (fortunately) produce a warning:
It looks like it should be illegal, but it's valid because x can be implicitly converted to a nullable int. Never ignore this warning. You should also be aware of what appear on the surface to be oddities with operators. For instance, usually you'd expect that:
would always be true - but it's not when Finally, make sure you understand how boxing works with nullable types. A non-null value of a nullable value type is boxed as if it were non-nullable to start with, and a null value is boxed to a simple null reference. (i.e. no box is actually created - the runtime just returns null). You can unbox to a nullable value type from either a null reference or a box of the underlying type. Does that make sense? (I go into it in more detail in C# in Depth, and hopefully with a bit more clarity... but it's 8.45 and I haven't had coffee...) EDIT: Okay, maybe an example will help:
|
||||
|
|
|
Watch out for |
||
|
|
|
|
You should also be careful to only use nullable types where the logic of the class mandates that the values are really nullable. This may sound stupid, but if you "go overboard" and make everything nullable you may be making the code more complex than necessary. When it's used at the appropriate places I think it improves code quality, but if it's redundant, don't do it. |
||
|
|
|
|
There is a gotcha with
Basically, Also - note that some data-binding methods don't like |
||
|
|
|
Interoperability can be a problem - e.g. exposing to COM clients or as a web service. |
||
|
|
