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

this() public method

e.g. Offset[0] is the current value
public this ( int index ) : byte
index int
return byte
        public byte this[int index]
        {
            get
            {
                return InternalGet(-1-index);
            }
            set
            {
                InternalSet(-1-index, value);
            }
        }