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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top