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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:57:11+00:00 2026-05-26T17:57:11+00:00

I would like to complete the below XML so all Parent elements have all

  • 0

I would like to complete the below XML so all Parent elements have all 3 child elements.

<Parent>
  <Child1></Child1>
  <Child2></Child2>
  <Child3></Child3>
</Parent>
<Parent>
  <Child3></Child3>
</Parent>
<Parent>
  <Child1></Child1>
  <Child3></Child3>
</Parent>

So i got the below code

var elementsToChange = inputDoc.Descendants(CommonConstant.Parent);
foreach (var element in elementsToChange)
{
   if (element.Element(CommonConstant.Child1) == null) 
   { 
     //add child1 at 1
   }      
   if (element.Element(CommonConstant.Child2) == null) 
   { 
     //add child2 at 2
   }       
}

But i can’t find an Insert() or AddAT() on element. (and since i dont know what childs exist, using add afetr or before self are hard to use.)

Is there a way of adding a child at a certain location?

  • 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-05-26T17:57:12+00:00Added an answer on May 26, 2026 at 5:57 pm

    Try this:

    foreach (var element in elementsToChange)
    {
      XElement lastChild = null;
      foreach(var childName in Enumerable.Range(1, 3).Select(x => "Child" + x))
      {
        var child = element.Element(childName);
        if(child == null)
        {
          child = new XElement(childName);
          if(lastChild == null)
            element.AddFirst(child);
          else
          {
            lastChild.AddAfterSelf(child);
          }
        }
        lastChild = child;
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a complete XML document in a string and would like a Document
I have a program which takes a long time to complete. I would like
Update: I have provided complete code example in answer below. I have built my
In the code below, I would like to display a status message while fetching
Would like to know the c# code to actually retrieve the IP type: Static
I would like to know how do I add an error check to below
I have been tweaking with below sample code. The documentation for MathJax isn't very
I have a gridview that gets created in codebehind. In the below code, I
I have been using the JEditable plugin for JQuery and I would like to
I have a really long 3 column table. I would like to <table> <tr><td>Column1</td><td>Column2</td></tr>

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.