System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load("E:\\voucher.xml");
doc.InnerXml;
注意:此時會將xml文件轉化為不包含任何節點的字符串,比如:
XmlDocument Xd = new XmlDocument();
Xd.Load("E:\\voucher.xml");
Xd.InnerXml
注意:此時會將xml文件轉化為包含節點的字符串,比如:
本文URL:http://www.bianceng.cn/Programming/csharp/201410/45577.htm