XML 转为字符串的通过用方式
通用的xml 转为字符串
public static string GetXMLAsString(string xmlPath)
{
XmlDocument doc = new XmlDocument();
doc.Load(xmlPath);
// doc.Load("C:\\Users\\Administrator\\Desktop\\ConsoleApp\\1.xml");
StringWriter sw = new StringWriter();
XmlTextWriter tx = new XmlTextWriter(sw);
doc.WriteTo(tx);
string str = sw.ToString();//
return str;
}
再牛逼的梦想,也抵不住我傻逼似的坚持!别在该奋斗的年纪,贪图安逸。 今天多学一些知识,明天开发的速度就更快一下。后天你就会变得更好。