c# - Difference between XMLDOM document, XML document and XML String document -
Can anyone tell me what is the XML string document and XMLDOM document? What will be the expansion of those two documents (XML string and XMLDOM) how is this document different from the normal XML document (.xml)?
XMLDOM document (which is actually XML's DOM) or XML document object model An XML document has an in-memory presentation. Dome allows you to read, write, change, manipulate and copy an XML document through code. To read further, take a look and
The XML string has never heard about the document, but I mean that XML represents the written text inside the document, take a look for more information.
Comments
Post a Comment