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; }
        }