次のような文字列があります:"<Root><Child>Hey</Child></Root>"
"<Root><Child>Hey</Child></Root>"
これをXElementオブジェクトに変換するにはどうすればよいですか?
XElement
以下のような XElement.Parse メソッドを使用します
XElement xmlTree = XElement.Parse("<Root><Child>Hey</Child></Root>"); Console.WriteLine(xmlTree);