私はこのコードを持っています:
XElement EcnAdminConf = new XElement("Type",
new XElement("Connections",
new XElement("Conn"),
// Conn.SetAttributeValue("Server", comboBox1.Text);
// Conn.SetAttributeValue("DataBase", comboBox2.Text))),
new XElement("UDLFiles")));
// Conn.
属性を追加する方法 Conn
か?コメントとしてマークした属性を追加したいのですがConn
、定義後に属性をオンに設定しようとするとEcnAdminConf
、表示されません。
XMLが次のようになるように、なんとかして設定したいと思います。
<Type>
<Connections>
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
</Connections>
<UDLFiles />
</Type>