System.Windows.Forms.ByteCollection.this C# (CSharp) Method

this() public method

Gets or sets the value of a byte
public this ( int index ) : byte
index int
return byte
        public byte this[int index]
        {
            get { return (byte)List[index]; }
            set { List[index] = value; }
        }