0 votes
in XML by
Can you please help to explain what is XmlReader class? Explain.

1 Answer

0 votes
by
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;

Related questions

0 votes
asked Sep 20, 2020 in XML by Robindeniel
0 votes
asked Sep 20, 2020 in XML by Robindeniel
...