1、XmlTextWriter 表示提供快速、非缓存、只进方法的编写器,该方法生成包含 XML 数据(这些数据符合 W3C 可扩展标记语言 (XML) 1.0 和“XML 中的命名空间”建议)的流或文件。
public class XmlTextWriter : XmlWriter XmlTextWriter继承抽象类 XmlWriter
XmlTextWriter 小例子:
string resultFileName = "c:/44.txt"; if (!System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(resultFileName))) { System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(resultFileName)); } XmlTextWriter result = new XmlTextWriter(resultFileName, null); result.Formatting = Formatting.Indented; result.WriteStartElement("Poli