I am getting a consistent error in the FastCharStream.cs file version 2.3.1
charsRead is 0 so an error is thrown.

try
{
charsRead = input.Read(buffer, newPosition, buffer.Length - newPosition);
}
catch
{
}


if (charsRead <= 0)
throw new System.IO.IOException("read past eof");
else
bufferLength += charsRead;

What do I do now? Is there a reporting system?

Reply via email to