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 59441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:00:21+00:00 2026-05-10T18:00:21+00:00

I am creating a lightweight editor in C# and would like to know the

  • 0

I am creating a lightweight editor in C# and would like to know the best method for converting a string into a nicely formatted XML string. I would hope that there’s a public method in the C# library like ‘public bool FormatAsXml(string text, out string formattedXmlText)’, but it couldn’t be that easy, could it?

Very specifically, what would the method ‘SomeMethod’ have to be that would produce the output below?

string unformattedXml; string formattedXml;  unformattedXml = '<?xml version=\'1.0\'?><book><author>Lewis, C.S.</author><title>The Four Loves</title></book>' formattedXml = SomeMethod(unformattedXml);  Console.WriteLine(formattedXml); 

Output:

<?xml version='1.0'?>   <book id='123'>     <author>Lewis, C.S.</author>     <title>The Four Loves</title>   </book> 
  • 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-10T18:00:21+00:00Added an answer on May 10, 2026 at 6:00 pm
    string unformattedXml = '<?xml version=\'1.0\'?><book><author>Lewis, C.S.</author><title>The Four Loves</title></book>'; string formattedXml = XElement.Parse(unformattedXml).ToString(); Console.WriteLine(formattedXml); 

    Output:

    <book>   <author>Lewis, C.S.</author>   <title>The Four Loves</title> </book> 

    The Xml Declaration isn’t output by ToString(), but it is by Save() …

      XElement.Parse(unformattedXml).Save(@'C:\doc.xml');   Console.WriteLine(File.ReadAllText(@'C:\doc.xml')); 

    Output:

    <?xml version='1.0' encoding='utf-8'?> <book>   <author>Lewis, C.S.</author>   <title>The Four Loves</title> </book> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 62k
  • Answers 62k
  • 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
  • added an answer In your example, TABLE is a constant, not an instance… May 11, 2026 at 10:11 am
  • added an answer If you pass a state object which includes a reference… May 11, 2026 at 10:11 am
  • added an answer Since you stated in a comment that you don't want… May 11, 2026 at 10:11 am

Related Questions

I am creating a lightweight editor in C# and would like to know the
I am creating a small modal form that is used in Winforms application. It
I am creating a program that will be installed using the .net installer project.
I am creating a GUI for a machine that runs remote (WinXP) or on
I am creating a Windows Service in C# that processes messages from a queue.
I am creating a windows service and want to know best practices for this.
I am creating a Rails plugin and it is dynamically adding a method to
I am creating a website in CakePHP and I am kind of new on
I am creating a generic error handling / logging class for our applications. The
I am creating a downloading application and I wish to preallocate room on the

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.