RTools.Util.CharBuffer.this C# (CSharp) Method

this() public method

Indexer.
public this ( int index ) : char
index int
return char
        public char this[int index]
        {
            get { return (buffer[index + headIndex]); }
            set { buffer[index + headIndex] = value; }
        }