How to I know if the Item is null(empty)?
xmlDoc = XDocument.Load("file.xml");
IEnumerable<XElement> item =
from el in xmlDoc.Descendants("Item")
where (string)el.Attribute("Name") == "Google"
select el;
something instead of if(item==null )