我有这样的 xml 数据
string data = @"<DeliveryReport><message id=""093102403501103726""
sentdate=""2013/10/24 08:50:11"" donedate=""2013/10/24 08:50:12""
status=""NOT_DELIVERED"" gsmerror=""1"" /></DeliveryReport>";
并且正在转换/解析它
if (data != null)
{
XDocument xmlDoc = XDocument.Load(data);
var tutorials = from tutorial in xmlDoc.Descendants("message")
select new
{
};
}
是在路径中抛出错误非法字符。任何人都可以告诉我我错过了什么吗?