N
Nicholas Paldino [.NET/C# MVP]
David,
If you have a reference, then all you have to do is check to see if it
is null, like so:
// The reference.
object pobjObject;
// Check for null.
if (pobjObject == null)
// Do something.
Hope this helps.
If you have a reference, then all you have to do is check to see if it
is null, like so:
// The reference.
object pobjObject;
// Check for null.
if (pobjObject == null)
// Do something.
Hope this helps.