Babel.Core.STR.is_eq C# (CSharp) Method

is_eq() public static method

public static is_eq ( string self, object o ) : bool
self string
o object
return bool
        public static bool is_eq(string self, object o)
        {
            if (o is string) {
                return is_eq(self, (string) o);
            }
            else {
                return false;
            }
        }

Same methods

STR::is_eq ( string self, string s ) : bool