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

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

c# - Can't check if a specific object key is null

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...