IsInstance() ?

  • Thread starter Thread starter vertigo
  • Start date Start date
V

vertigo

Hello
How can i check if specified value still points to exsting object
instance ? I receive errors "Object reference not set to an instance of
an object".

Thanx
Michal
 
vertigo said:
How can i check if specified value still points to exsting object
instance ? I receive errors "Object reference not set to an instance of
an object".

if (someVariable != null)
{
....
}
 

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