如何从字符串转换为XElement对象
本文关键字:XElement 对象 转换 字符串 | 更新日期: 2023-09-27 18:11:49
我有一个这样的字符串:"<Root><Child>Hey</Child></Root>"
如何将其转换为XElement
对象?
使用XElement。解析如下方法
XElement xmlTree = XElement.Parse("<Root><Child>Hey</Child></Root>");
Console.WriteLine(xmlTree);