bigloo.input_file_port.rgc_charready C# (CSharp) Method

rgc_charready() public method

public rgc_charready ( ) : bool
return bool
        public override bool rgc_charready()
        {
            if (eof || other_eof)
            return false;

              try
              {
            return (   (forward+1) < bufpos)
                || (_in.Position < _in.Length);
              }
              catch (Exception)
              {
            return false;
              }
        }