开发者

C# / Visual Studio - Object is null unless I have a Breakpoint

开发者 https://www.devze.com 2023-02-05 07:03 出处:网络
I\'m specifically using the Google Contacts API at the moment, but this could be true of other scinarios as well.

I'm specifically using the Google Contacts API at the moment, but this could be true of other scinarios as well.

I have the following code:

Contact newContact = new Contact();

When I let the code run without any breakpoints, I get a NullReferenceExc开发者_开发问答eption on all of the properties of this object. However, if I put a breakpoint just after this line, I can see all of the properties have been initialises and the rest of my code executes fine.

Any idea's would be greatly appreciated


Maybe it takes a while to initialize Contact object (i.e. download data from internet). If it is done asynchronous then when you set a breakpoint you give program a time to do it.

0

精彩评论

暂无评论...
验证码 换一张
取 消