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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:45:41+00:00 2026-05-20T12:45:41+00:00

I just have some codes here to clarify my doubts on linq xml parsing.

  • 0

I just have some codes here to clarify my doubts on linq xml parsing. I have the following:

...
{

            XDocument xmlDoc = XDocument.Load(@"C:\Build.xml");
            var abc = from example in xmlDoc.Descendants("target")
                      select (string)target.Attribute("if");
            ...
            foreach(string example in abc)
           {
            ...
           }

            ...
           }

Can i ask that if it is true that in the line select (string)target.Attribute("if")
i am selecting a string from the xml file from the value of “if” as shown in the xml file below:

<xml>
<target if="thevalue">
</target>
</xml>

then i have this line:
foreach(string example in abc)

Is it true that for every selected string of the “value” of the “if” attribute, i am doing something in the foreach loop.

  • 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-20T12:45:42+00:00Added an answer on May 20, 2026 at 12:45 pm

    Yes, this is correct. The variable “example” in your foreach loop will contain the value of the “if” attribute.

      var abc = from target in xDocument.Descendants("target")
                select (string)target.Attribute("if");
    
      foreach (var example in abc)
      {
        Console.WriteLine(example);
      }
    

    try the above code in a console application and you’ll see the values in the console window. Or you could use Debug.WriteLine(example) in a different type of application

    This is a better linq query expression however

      var abc = from target in xDocument.Descendants("target").Attributes("if")
                select target.Value;
    

    or change your linq query expression to

      var abc = from target in xDocument.Descendants("target")
                select target.Attribute("if").Value;
    

    EDIT
    To help with your issue with the Debugger:
    I’ve moved my mouse over abc and I see the debugger pop up the information window as shown in the image below

    enter image description here

    This first images show the “Results View” has those green arrows. You need to click on those arrows before you can see the result (as the message next to them says)

    The second image then shows you the results
    enter image description here

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

Sidebar

Related Questions

I have added some code which compiles cleanly and have just received this Windows
Found some old code, circa VS 2003. Now I have just VS 2008 (SP1)
I just realized that in some place in my code I have the return
I have some tables that represent various types. They usually just consist of an
Does anyone have some numbers on this? I am just looking for a percentage,
Ok guys just a small game: I have some specifications for a project. At
I just started to read about this new technology... Does someone have some knowledge
In VisualStudio (Pro 2008), I have just noticed some inconsistent behaviour and wondered if
I am reading a text file with this format: grrr,some text,45.4321,54.22134 I just have
I have just started learning Erlang and am trying out some Project Euler problems

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.