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;
    }