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

  • SEARCH
  • Home
  • 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

Ask A Question

Stats

  • Questions 118k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Unfortunately you can't because the relationship works the opposite way.… May 11, 2026 at 11:38 pm
  • Editorial Team
    Editorial Team added an answer You want to use the null-coalescing operator, which is designed… May 11, 2026 at 11:38 pm
  • Editorial Team
    Editorial Team added an answer This sounds like a good candidate for an HttpHandler My… May 11, 2026 at 11:38 pm

Related Questions

My project that I am working on is almost finished. I am loading a
I am a newbie to Database programming. After inserting a couple of rows into
I have a C# Windows Forms application, whose prototype was created on SQL Server
I am trying to write a Windows Form and ASP.NET C# front-end and MSAccess

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.