Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this object:

var obj = JsonConvert.DeserializeObject<RootObject>(responseText);

now in some case the deserialization generate two key: arts and det. The det key is even filled, but in some cases the key arts could be null. I check the object content null like this:

foreach(var item in obj.det){
   ...
   if(!item.arts.Equal(null)){ 'the problem is here
    ...
   }
}

The problem is on the condition, in particular I check if the arts key is different against null but I got this exception:

NullReference Exception was not managed

I don't understand what I did wrong, could someone enlight me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
282 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try

if(item.arts == null){
 // do your checking operation
}

I am not sure if that is causing your problem but in general calling a method on a null object creates an error.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...