Alexandria.Engines.Sciagi.Resources.PictureInstruction.PeekContinue C# (CSharp) Метод

PeekContinue() защищенный статический Метод

Peek at the next byte and return whether it's not an opcode.
protected static PeekContinue ( Stream stream ) : bool
stream Stream
Результат bool
        protected static bool PeekContinue(Stream stream)
        {
            return PeekByte(stream) < 0xF0;
        }