Creating Object

  • Thread starter Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date Start date
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.
 
Back
Top