我在用
XDocument doc = XDocument.Parse(somestring);
但是如何验证字符串somestring是否是格式良好的XML.尝试抓住唯一的办法吗?
解决方法
Is Try Catch the only way to do this?
XDocument没有TryParse方法,所以try-catch可能是最好的选择.还要考虑根据模式验证XML,因为它不仅将通过检查约束来检查XML是否形成良好.
你可能会看到:Validation Against XML Schema (XSD) with the XmlValidatingReader