|
分類:[C#]
分類:[C#]
xml出力について教えてください。 現在xml出力にて、下記のロジックにし出力結果も以下のようになります。 ordダクが自動で閉じてしまう状態です。 "/"で閉じるのではなく、タグで閉じたいのですがどのようにすればようのでしょうか? 教えてください。 よろしくお願いします。
XmlElement vXmlElementRoot = vXmlDocument.CreateElement("root"); vXmlElementRoot.SetAttribute("a", "20060920"); vXmlElementRoot.SetAttribute("b", "1"); vXmlDocument.AppendChild(vXmlElementRoot);
XmlElement vXmlElementOrder = vXmlDocument.CreateElement("ord"); vXmlElementOrder.SetAttribute("c", "0"); vXmlElementOrder.SetAttribute("d", vStrPolling); vXmlElementRoot.AppendChild(vXmlElementOrder);
<root a="20060920" b="1"> <ord c="0" d="30000" /> </root>
↓
<root a="20060920" b="1"> <ord c="0" d="30000" > </ord> </root> このようにしたいです。
|