Login
Remember
Register
Ask a Question
Can you please help to explain what is XmlReader class? Explain.
0
votes
asked
Sep 20, 2020
in
XML
by
Robindeniel
Can you please help to explain what is XmlReader class? Explain.
#xmlreader-class
#xmlreader
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 20, 2020
by
SakshiSharma
The XmlrReader class represents a reader that provides fast, noncached, forward-only access to XML data. You need to import the following namespaces to work with XmlReader class in .NET.
1) In VB:
Imports System.Xml
2) In C#:
using System.Xml;
...