Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I go through these two Classes in C# Can anyone explain the difference and tell me that where to use which?

share|improve this question
Well, first off, you can't instantiate XmlWriter. – BoltClock Aug 1 '11 at 13:56

2 Answers

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.

share|improve this answer
"You should always call XmlWriter.Create" why do you make this assertion ? – Steve B Aug 1 '11 at 13:58
2  
@Steve: Because Microsoft does. – SLaks Aug 1 '11 at 13:58
thanks for the link – Steve B Aug 1 '11 at 14:53

Take a look at the blog post on these particular APIs I wrote some time ago: http://blogs.msdn.com/b/xmlteam/archive/2011/10/08/the-world-has-moved-on-have-you-xml-apis-you-should-avoid-using.aspx. Also, the discussion in the comments is quite informative as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.