This is probably a generic message for many error conditions.
Any tips / suggestions to overcome this type of exception?
Thanks in advance.
It's almost always because you're trying to dereference a variable whose
value is null, e.g.:
string x = null;
Console.WriteLine (x.Length);
--
Jon Skeet - <sk...@pobox.com>
http://www.pobox.com/~skeet/
If replying to the group, please do not mail me too