XmlTextWriter 和 XmlWriter 有什么区别?
我正在 C# 中查看这两个类:XmlTextWriter
和 XmlWriter
。 谁能解释一下其中的区别并告诉我在哪里使用哪个?
I am looking at these these two classes in C#: XmlTextWriter
and XmlWriter
.
Can anyone explain the difference and tell me where to use which?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XmlWriter
是一个抽象类。XmlTextWriter
是XmlWriter
的具体实现。您应该始终调用
XmlWriter.Create
。MSDN 说:
XmlWriter
is an abstract class.XmlTextWriter
is a specific implementation ofXmlWriter
.You should always call
XmlWriter.Create
.MSDN says: