I want to set value to some XmlNode but i dont want to use InnerText - is there some other way ?
the xml that i need to have is
<ns1:id>123456</ns1:id>
so i did this
XmlNode node = doc.CreateElement( doc.DocumentElement.Prefix, "id", doc.DocumentElement.NamespaceURI );
node.InnerText = "123456";
but i want to do it without using the InnerText ... => is there a way to do it ?
Thanks