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.
XElement xml=empty;のようなことを行うにはどうすればよいですか。
RemoveAllメソッドを使用して、すべての子要素を削除します。
xml.RemoveAll();
これにより、既存のXElementはそのままになりますが、それをクリアしたい場合は、新しいXElementを完全に作成するだけです。
xml = new XElement("name");