using System.Diagnostics;
using System.Collections.Generic;
public static void Main()
var s = new String('x', 10000000);
private static void StringReaderTest(string s)
var stopwatch = new Stopwatch();
var reader = new StringReader(s);
while (reader.Peek() > -1)
Console.WriteLine(stopwatch.ElapsedMilliseconds);
private static void DataReaderTest(string s)
var stopwatch = new Stopwatch();
var reader = new DataReader(s);
while (reader.Peek() > -1)
Console.WriteLine(stopwatch.ElapsedMilliseconds);
public DataReader(string data)
if (pos == length) return -1;
if (pos == length) return -1;