System.Windows.Forms.DynamicByteProvider.ReadByte C# (CSharp) Method

ReadByte() public method

Reads a byte from the byte collection.
public ReadByte ( long index ) : byte
index long the index of the byte to read
return byte
        public byte ReadByte(long index)
        {
            return _bytes[(int)index];
        }