Somewhere in your code, you have an object reference, and it's not set to an instance of an object :)
Somewhere you've used an object without calling it's constructor.
what you should do:
MyClass c = new MyClass();
what you've done:
MyClass c;
c.Blah();