Patcher.IO.ReadOnlyFileStream.Read C# (CSharp) Method

Read() public method

public Read ( byte array, int offset, int count ) : int
array byte
offset int
count int
return int
        public override int Read(byte[] array, int offset, int count)
        {
            position += count;
            return base.Read(array, offset, count);
        }