System.Windows.Forms.ByteCollection.this C# (CSharp) Méthode

this() public méthode

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