Patcher.IO.CustomDeflateStream.Read C# (CSharp) Méthode

Read() public méthode

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