问题
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?
回答1:
XmlWriter
is an abstract class.XmlTextWriter
is a specific implementation of XmlWriter
.
You should always call XmlWriter.Create
.
MSDN says:
In the .NET Framework version 2.0 release, the recommended practice is to create XmlWriter instances using the XmlWriter.Create method and the XmlWriterSettings class. This allows you to take full advantage of all the new features introduced in this release. For more information, see Creating XML Writers.
来源:https://stackoverflow.com/questions/6899427/what-is-the-difference-between-xmltextwriter-and-xmlwriter