C#中如何把XML本地文件转换成XML字符串
C#中如何把XML本地文件转换成XML字符串2014-10-07System.Xml.XmlDocument doc = new System.Xml.XmlDocument();doc.Load("E:\voucher.xml");doc.InnerXml;注意:此时会将xml文件转化为不包含任何节点的字符串,比如:XmlDocument Xd = new XmlDocument();Xd.Load("E:\voucher....