Glare.Assets.Controls.BinaryAssetBrowser.this C# (CSharp) Method

this() private method

private this ( int index ) : byte
index int
return byte
        byte this[int index]
        {
            get {
                if (index < 0 || index > SourceCount)
                    throw new ArgumentOutOfRangeException("index");
                return SourceData[SourceStart + index];
            }
        }