|
Technical Interview Questions
Visual Basic Interview Question
ASP .NET Interview Questions
C++ Interview Questions
C
Interview Questions
.........More
Programming Source Codes
C/C++ Source Codes
C# Source Codes
.........More
Aptitude Interview Questions
C/C++ Aptitude Questions
C Aptitude Questions
.........More
Tutorials
C Tutorial
C++ Tutorial
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
C# Source Codes
Reading an XML
using System.Xml;
<testnode>
<element1>Element1 Text</element1>
<element2>Element2 Text</element2>
<element3>Element3 Text</element3>
<element4>Element4 Text</element4>
<element5>Element5 Text</element5>
</testnode>
C# Code
string filename = "test.xml";
XmlTextReader tr = new XmlTextReader(filename);
while(tr.Read())
{
if(tr.NodeType == XmlNodeType.Text)
System.Console.WriteLine(tr.Value);
}
When you run this example you will see each of the Elements listed like such:
Element1 Text
Element2 Text
Element3 Text
Element4 Text
Element5 Text
<<<----- Return to
C# Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Object Oriented Interview
Questions for more Object Oriented Interview Questions with answers
Check
Data Structure
Interview Questions for more data structure interview questions with
answers
|