Eu tenho este código:
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.
Como adiciono atributos a Conn
? Quero adicionar os atributos que marquei como comentários, mas se eu tentar definir os atributos Conn
após a definição EcnAdminConf
, eles não serão visíveis.
Eu quero defini-los de alguma forma para que o XML fique assim:
<Type>
<Connections>
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
</Connections>
<UDLFiles />
</Type>