Mam ten kod:
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.
Jak dodać atrybuty do Conn
? Chcę dodać atrybuty, które oznaczyłem jako komentarze, ale jeśli spróbuję włączyć atrybuty Conn
po zdefiniowaniuEcnAdminConf
, nie są one widoczne.
Chcę je jakoś ustawić, aby XML wyglądał następująco:
<Type>
<Connections>
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
<Conn ServerName="FAXSERVER\SQLEXPRESS" DataBase="SPM_483000" />
</Connections>
<UDLFiles />
</Type>
c#
xml
linq-to-xml
Dominujący
źródło
źródło