Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、
C# で XElement を XmlNode に変換する「正しい」方法はありますか?
CreateReader() と XmlDocument を次のように使用します
XmlDocument myXmlNode = new XmlDocument(); using (XmlReader reader = myXElement.CreateReader()) { myXmlNode.Load(reader); }
XmlDocument は XmlNode から派生します。