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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T01:11:44+00:00 2026-06-01T01:11:44+00:00

Could someone explain in layman terms what this actually does? XmlTextReader textReader = new

  • 0

Could someone explain in layman terms what this actually does?

XmlTextReader textReader = new XmlTextReader(workingDir + @"\ModulesList.xml");

            textReader.Read();

                if (textReader.Name == "Name")
                {
                    textReader.Read();
                    XmlNodeType nType = textReader.NodeType;
                }
                if (nType == XmlNodeType.Text)
                {
                    listBox1.Items.Add(textReader.Value.ToString());
                }

I don’t understand the purpose of XmlNodeType and NodeType on the textreader. Please could someone clear it up for it in like the simplest way 😛

  • 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-01T01:11:46+00:00Added an answer on June 1, 2026 at 1:11 am

    An XmlReader is like a forward-only cursor through an XML document. Aside from the fact that your code won’t compile (you’re declaring nType in one block and then using it in another), XmlReader.NodeType returns the current type of node the XML reader is looking at – an element, a text node, an attribute etc. XmlNodeType is the enum of possible values for XmlReader.NodeType.

    Each time you call Read, the reader will move on to the next node – and what you want to do with that node will often depend on its type.

    Personally I would steer clear of XmlReader unless you’re trying to read a huge document which won’t fit into memory. It’s a much harder API to use properly than APIs which load a whole document into a tree, and let you navigate around that tree. LINQ to XML is a particularly nice API if you’re in a situation where you can use it.

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

Sidebar

Related Questions

Could someone explain me what this code does line by line ? how t
Could someone explain this to me? var diagramImage = new Kinetic.Shape(function () { var
Please could someone explain to me why this regex does not match anything, when
I was wondering if someone could explain in layman's terms what partial ordering of
Could someone explain to me in simple terms the easiest way to change the
Could someone explain why this works in C#.NET 2.0: Nullable<DateTime> foo; if (true) foo
Could someone explain this (strange) behavior? Why is the length in the first example
Could someone explain to me what this portion of code means? repeat scroll 0
I'm rather new to these could someone explain the significance (of the following code)
Could someone explain when does local SharedObject triggers event handlers added via addEventListener? I

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.