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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:13:12+00:00 2026-06-04T21:13:12+00:00

I write an element in an XML file using XmlWriter using (XmlWriter writer =

  • 0

I write an element in an XML file using XmlWriter

using (XmlWriter writer = XmlWriter.Create("test.x))
{
   writer.WriteStartElement("Order");
   writer.WriteEndElement();
}

which writes the following to the file

<Order>
</Order>

However, I want to write the following

<Order key="Name">
</Order>

WriteStartElement only takes one argument:

public void WriteStartElement(
string localName
)

So I guess I have to use a different function, but I can’t find which one. So ho can I add a key to an element?

  • 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. Editorial Team
    Editorial Team
    2026-06-04T21:13:14+00:00Added an answer on June 4, 2026 at 9:13 pm

    You need to add an attribute named key (since that’s what you seem to want to add – an attribute to the Order element):

    using (XmlWriter writer = XmlWriter.Create("test.x))
    {
       writer.WriteStartElement("Order");
       writer.WriteAttributeString("key", "value");
       writer.WriteEndElement();
    }
    

    See WriteAttributeString.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was trying to create an xml which contains a large data using XMLWriter,
I'm using XmlWriterSettings to write Xml to file. I have elements with only attributes,
I'm using lxml to create an XML file from scratch; having a code like
I've a xml file in which I'm storing some HTML content in an element
I am writing an XML file in C# using XmlWriter. I am able to
I'm writing out an XML file using VB.net. When I try to create another
I use ASP.net VB.net to write a XML file. In one of the element
I'm using the following xml file to read the contents of a file that
I'm trying to create and write an XML in a Blackberry application using the
I need to write a base64 encoded element of an xml file into a

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.