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

op_Member() public static method

public static op_Member ( object lhs, IEnumerable rhs ) : bool
lhs object
rhs IEnumerable
return bool
        public static bool op_Member(object lhs, IEnumerable rhs)
        {
            if (null == rhs)
            {
                return false;
            }
            foreach (object item in rhs)
            {
                if (EqualityOperator(lhs, item))
                {
                    return true;
                }
            }
            return false;
        }

Same methods

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