






















using System.Xml;
//------------------------------
string xmlFile = Server.MapPath(@"files.xml");
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(xmlFile);
string xmlStr = xmlDoc.OuterXml;
TextBox1.Text = xmlStr;
//--------------------------
http://geekswithblogs.net/paulwhitblog/archive/2007/07/20/114076.aspx
http://www.willasrari.com/blog/xml-serialization-with-c/000231.aspx
3.Serializing .NET Objects Into XML – How to Retrieve XML Schema From an Interface
http://blog.bodurov.com/XML-Schema-From-dot-NET-Interface
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。