Provides access to a stream and allows to peek at the next characters, up to the buffer's capacity.
public class LookAheadBuffer : ILookAheadBuffer
This class implements a circular buffer with a fixed capacity.
kind:method, kind:property, kind:ctor. Press Esc to clear.LookAheadBuffer(TextReader, Int32)Initializes a new instance of the LookAheadBuffer class.EndOfInputGets a value indicating whether the end of the input reader has been reached.Cache(Int32)Reads characters until at least length characters are in the buffer.Peek(Int32)Gets the character at thhe specified offset.Skip(Int32)Skips the next length characters. Those characters must have been obtained first by calling the Peek(Int32) or Cache(Int32) methods.