이 코드가 있습니다 :
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>