I want to check given node is exist or not in *.xml file.
I try:
string language = node.SelectSingleNode("language") != null ? (node.SelectSingleNode("language").Value == "en" ? "en-US" : "en-US") : "en-US";
But I think its check only for node value.In some xml file I haven't node called language So its gives a Null Reference Ex...
How to check Given node is exist or not in *.xml file? Thanks.

string language = "en-US"does the same! – weston Aug 17 '12 at 11:40nodeitself were null. Please can you confirm that is your exact code, that node is not null, and that it's definitely this line of code that is throwing the exception? – RB. Aug 17 '12 at 11:40