I\'m parsing XML. I normally parse it the way I show in the code below which is straightforward The problem is that I don\'t own the XML I\'m parsing and I can\'t change it.
You may use the code below:
string content = item.Element("Content") == null ? "" : item.Element("Content").Value;