System.Windows.Forms.DynamicByteProvider.ReadByte C# (CSharp) Méthode

ReadByte() public méthode

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