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

op_Member() public static method

public static op_Member ( object lhs, IList rhs ) : bool
lhs object
rhs IList
return bool
        public static bool op_Member(object lhs, IList rhs)
        {
            if (null == rhs)
            {
                return false;
            }
            return rhs.Contains(lhs);
        }

Same methods

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