bigloo.foreign.ucs2_string_cile C# (CSharp) Method

ucs2_string_cile() public static method

public static ucs2_string_cile ( char o1, char o2 ) : bool
o1 char
o2 char
return bool
        public static bool ucs2_string_cile( char[]  o1,
					   char[]  o2 )
        {
            return (String.Compare( new String( o1 ), new String( o2 ), true ) <= 0);
        }
foreign