Please, need your help.
I want to use an XML structure as an object, or just like an object of a class.
XML myObj = read it from file.
then
XmlNode node = myObj.SelectNode(NAME);
if (node != null) node.InnerText = "My text and my value";
I want to work with XML because will send it to pipe without serialization to C# machine. Where it will be deserialized from the XML.