XmlConvert and nullable results?
In my project I receive an XmlElement of which I have to parse a few properties back to a class. For mapping these I use the XmlConvert class. But the source being XML there often are empty nodes or nodes that are not readable. Rather then throwing a bunch of errors, I want to get a NULL back to store in my class. I started making ...