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 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

Related Questions

I am creating a lightweight, single-file database administration tool and I would like to
I am starting to develop Android applications and I would like to know if
I'm a newbie who is creating a lightweight photo showcase site written on the
Error creating bean with name 'sessionFactory' defined in class path resource [ApplicationContext.xml]: Invocation of
I'm getting random crashes when creating an inferred mapping model (with Core Data's lightweight
How would you go about creating a vector class in Delphi? I would prefer
Creating my WordPress author.php template page and ran into a little roadblock. I want
I am looking into creating a real-time document editing and chat application. I have
I am creating a personal website.So,its a very lightweight website! The website uses jquery
I'm getting the runtime error Error creating window handle. From my research, I know

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.