Alexandria.Engines.Sciagi.Resources.PictureInstruction.ReadByte C# (CSharp) Method

ReadByte() protected static method

Read a byte from the stream.
protected static ReadByte ( Stream stream ) : byte
stream Stream
return byte
        protected static byte ReadByte(Stream stream)
        {
            return (byte)stream.ReadByte();
        }