Null reference exceptions in .net

Posted by Carlo on Stack Overflow See other posts from Stack Overflow or by Carlo
Published on 2010-05-28T18:42:28Z Indexed on 2010/05/28 18:51 UTC
Read the original article Hit count: 288

Filed under:
|

Hello, we're having this big problem with our application. It's a rather large application with several modules, and thousands and thousands lines of code. A lot of parts of the application are designed to exist only with a reference to another object, for example a Person object can never exists without a House object, so if you at any point in the app say:

bool check = App.Person.House == null;

check should always be false (by design), so, to keep using that example, while creating modules, testing, debugging, App.Person.House is never null, but once we shipped the application to our client, they started getting a bunch of NullReferenceException with the objects that by design, should never have a null reference. They tell us the bug, we try to reproduce it here, but 90% of the times we can't, because here it works fine.

The app is being developed with C# and WPF, and by design, it only runs on Windows XP SP 3, and the .net framework v3.5, so we KNOW the user has the same operative system, service pack, and .net framework version as we do here, but they still get this weird NullReferenceExceptions that we can't reproduce.

So, I'm just wondering if anyone has seen this before and how you fixed it, we have the app running here at least 8 hours a day in 5 different computers, and we never see those exceptions, this only happens to the client for some reason.

ANY thought, any clue, any solution that could get us closer to fixing this problem will be greatly appreciated.

Thanks!

© Stack Overflow or respective owner

Related posts about .NET

Related posts about wpf