BitMiracle.LibJpeg.Classic.JBLOCK.this C# (CSharp) Method

this() public method

Gets or sets the element at the specified index.
public this ( int index ) : short
index int The index of required element.
return short
        public short this[int index]
        {
            get
            {
                return data[index];
            }
            set
            {
                data[index] = value;
            }
        }
    }
JBLOCK