Image.Advance C# (CSharp) Метод

Advance() статический приватный Метод

static private Advance ( this stream, int length ) : bool
stream this
length int
Результат bool
    static bool Advance(this Stream stream, int length)
    {
        if (stream.Position + length >= stream.Length)
        {
            return false;
        }

        stream.Seek(length, SeekOrigin.Current);
        return true;
    }