javazoom.jl.decoder.CircularByteBuffer.Peek C# (CSharp) Method

Peek() public method

Returns what would fall out of the buffer on a Push. NOT the same as what you'd get with a Pop().
public Peek ( ) : byte
return byte
        public byte Peek()
        {
            lock(this)
            {
                return InternalGet(length);
            }
        }