I can\'t seem to figure out why this test doesn\'t pass
The test is:
given the following XML:
You can create custom XmlTextReader class:
XmlTextReader
public class CustomXmlTextReader : XmlTextReader { public CustomXmlTextReader(Stream stream) : base(stream) { } public override string ReadString() { return base.ReadString().Trim(); } }