System.Windows.Forms.ByteCollection.this C# (CSharp) Метод

this() публичный Метод

Gets or sets the value of a byte
public this ( int index ) : byte
index int
Результат byte
        public byte this[int index]
        {
            get { return (byte)List[index]; }
            set { List[index] = value; }
        }