XElement.ToString 結果の xml 文字列の属性間に改行を表示する方法はありませんか?
以下は機能しませんでした -- 改行を保持しましたが、それらをすべての属性の下に配置したため、4/5 の空行しかありませんでした:
new XElement("options", new XText("\r\n"),
new XAttribute("updated", Updated.XmlTime()), new XText("\r\n"),
new XAttribute("color", Color), new XText("\r\n"),
new XAttribute("puppies", Puppies), new XText("\r\n"),
new XAttribute("isTrue", IsTrue), new XText("\r\n"),
new XAttribute("kitties", Kitties ?? "")),