Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » Visual Studio » Tips & Tricks   (RSS)

Read / Write XML in Memory Stream

Use the XmlWriter to write XML to Memory Stream: MemoryStream stream = new MemoryStream (); XmlWriter writer = XmlWriter .Create(stream); http://msdn2.microsoft.com/en-us/library/ms162617.aspx or you can use the XmlDocument to save xml document to specific

Tips & Tricks on Visual Studio 2008 - I

Tip 1: Multi Target Framework In Visual Studio 2008, you have the option to choose which target framework for your application, either version 2.0 [Shipped with Visual Studio 2005], 3.0 [Shipped with Vista] or 3.5 [shipped with Visual studio 2008]. You
 
Page view tracker