Boo.Lang.Runtime.RuntimeServices.op_Member C# (CSharp) Method

op_Member() public static method

public static op_Member ( char lhs, string rhs ) : bool
lhs char
rhs string
return bool
        public static bool op_Member(char lhs, string rhs)
        {
            if (rhs == null) return false;
            return rhs.IndexOf(lhs) > -1;
        }

Same methods

RuntimeServices::op_Member ( object lhs, IDictionary rhs ) : bool
RuntimeServices::op_Member ( object lhs, IEnumerable rhs ) : bool
RuntimeServices::op_Member ( object lhs, IList rhs ) : bool
RuntimeServices::op_Member ( string lhs, string rhs ) : bool
RuntimeServices