mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
Ported libs fo net V6
This commit is contained in:
16
HaXMLReaderV6/XmlReaderReader.cs
Normal file
16
HaXMLReaderV6/XmlReaderReader.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Xml;
|
||||
using HaXMLReader.Interfaces;
|
||||
|
||||
namespace HaXMLReader {
|
||||
public class XmlReaderReader : Reader, IReader {
|
||||
private XmlReader _initial;
|
||||
|
||||
public XmlReaderReader(XmlReader reader) {
|
||||
_initial = reader;
|
||||
}
|
||||
|
||||
protected override XmlReader GetReader() {
|
||||
return _initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user