14 lines
325 B
C#
14 lines
325 B
C#
|
|
using System.IO;
|
|||
|
|
using System.Xml;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgo.RvKits.RvIndependent.MetroGauges
|
|||
|
|
{
|
|||
|
|
public class NamespaceIgnorantXmlTextReader : XmlTextReader
|
|||
|
|
{
|
|||
|
|
public NamespaceIgnorantXmlTextReader(Stream reader)
|
|||
|
|
: base(reader) { }
|
|||
|
|
|
|||
|
|
public override string NamespaceURI => string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|