System.util.zlib.ZInputStream.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
		public override int ReadByte()
		{
			if (Read(buf1, 0, 1) <= 0)
				return -1;
			return buf1[0];
		}