So C# now allows you to use default(Foo) to get a recognized "not filled in yet"/empty instance of a class -- I'm not sure if it is exactly the same as new Foo() or not. Many library classes also implement a Foo.Empty property, which returns a similar instance. And of course any reference type can point to null. So really, what's the difference? When is one right or wrong? What's more consistent, or performs better? What tests should I use when checking if an object is conceptually "not ready for prime time"? Not everybody has Foo.IsNullOrEmpty().
|
|
|
||
|
|
|
Use Otherwise, null should mean "unknown", and empty should mean "I know this is empty". Use the Foo.Empty pattern if you genuinely need an empty - but non-null - instance of your class; e.g. Use null if you know you're working with reference types (classes), there's no generics involved, and you're explicitly testing for uninitialized references. |
||
|
|
|
|
|
|||
|
|
|
|
When you know the actual type involved, or if you've got a type parameter constrained with ": class" it's simplest to use the known value (null, 0 etc). When you've just got a type parameter which is unconstrained or constrained other than to be a reference type, you need to use default(T). |
||
|
|
