我正在C#中查看这两个类:XmlTextWriter
和XmlWriter
。
谁能解释差异并告诉我在哪里使用?
最佳答案
XmlWriter
是一个抽象类。XmlTextWriter
是XmlWriter
的特定实现。
您应该始终调用XmlWriter.Create
。
MSDN说:
关于c# - XmlTextWriter和XmlWriter有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6899427/