Google News
logo
XML - Interview Questions
What is XmlReader class? Explain.
The XmlrReader class is a reader which provides fast, non-cached, forward-only access to XML data. To function with XmlReader class in.NET you will import the following namespaces.
 
In VB :
 
Imports System.Xml
 
In C# :
 
using System.Xml;
Advertisement