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)
{
....
}
 
Back
Top