ZForge.Controls.TreeViewAdv.GifDecoder.Read C# (CSharp) Method

Read() private method

private Read ( ) : int
return int
        private int Read()
        {
            int curByte = 0;
            try
            {
                curByte = inStream.ReadByte();
            }
            catch (IOException)
            {
                status = StatusFormatError;
            }
            return curByte;
        }

Same methods

GifDecoder::Read ( Stream inStream ) : int