bigloo.foreign.CHAR_LT C# (CSharp) Method

CHAR_LT() public static method

public static CHAR_LT ( int cn1, int cn2 ) : bool
cn1 int
cn2 int
return bool
        public static bool CHAR_LT( int  cn1,
				  int  cn2 )
        {
            return ((cn1 & 0xFF) < (cn2 & 0xFF));
        }
foreign