Recurity.Swf.BinaryReader2.PeekByte C# (CSharp) Method

PeekByte() public method

public PeekByte ( ) : byte
return byte
        public byte PeekByte()
        {
            long position = this.BaseStream.Position;
            byte r = this.ReadByte();
            this.BaseStream.Seek( position, SeekOrigin.Begin );
            return r;
        }