Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 102979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:03:04+00:00 2026-05-11T01:03:04+00:00

In C# how do you write a DataSet to file without it being written

  • 0

In C# how do you write a DataSet to file without it being written with pretty print?

Using C# and .NET 2.0, I’ve been using dataSet.WriteXml(fileName, XmlWriteMode.IgnoreSchema), which by default is writing the Xml file with pretty print. The company consuming the Xml files I write suggested that writing without the pretty print will not affect them, and will significantly decrease the size of the files. With a little playing around in the System.Xml namespace, I did find a solution. However, in my searching I did not find the answer anywhere, so I thought it might be helpful to someone else in the future if I posted the question. Also, I wouldn’t be surprised at all if there’s a better or at least different way of accomplishing this.

For those that don’t know (I didn’t until today), Xml ‘pretty print’ is:

<?xml version='1.0' standalone='yes'?> <NewDataSet>   <Foo>     <Bar>abc</Bar>   </Foo> </NewDataSet> 

Without pretty print it looks like this:

<?xml version='1.0' encoding='utf-8'?><NewDataSet><Foo><Bar>abc</Bar></Foo></NewDataSet> 

Additionally, the size savings was significant, 70mb files are becoming about 40mb. I’ll post my solution later today if no one else has.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T01:03:04+00:00Added an answer on May 11, 2026 at 1:03 am

    It’s pretty simple, you just have to create an XmlWriter using an XmlWriterSettings which has the Indent property set to false:

    // The memory stream for the backing. using (MemoryStream ms = new MemoryStream()) {   // The settings for the XmlWriter.   XmlWriterSettings settings = new XmlWriterSettings();    // Do not indent.   settings.Indent = false;    // Create the XmlWriter.   using (XmlWriter xmlWriter = XmlWriter.Create(ms, settings))   {      // Write the data set to the writer.      dataSet.WriteXml(xmlWriter);   } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a simple tool to generate a DBUnit XML dataset using queries that
I have a DataSet which has one table loaded with data. When i write
i am using following code to convert xml file to datatable but its just
I have been attempting to write a reusable generic method for lookups on a
If I write a python script using only python standard libraries, using Python 2.6
I write the following file temp.hs: import qualified Data.Set import System.Environment main :: IO
Is there any way I can avoid write operations while a dataset Fill operation
Background information first: We are using a strongly-typed DataSet to manage transaction files. That
Write a class ListNode which has the following properties: int value; ListNode *next; Provide
You write a function and, looking at the resulting assembly, you see it can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.