Boo.Lang.Runtime.RuntimeServices.op_Member C# (CSharp) Метод

op_Member() публичный статический Метод

public static op_Member ( object lhs, IDictionary rhs ) : bool
lhs object
rhs IDictionary
Результат bool
        public static bool op_Member(object lhs, IDictionary 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, IEnumerable rhs ) : bool
RuntimeServices::op_Member ( object lhs, IList rhs ) : bool
RuntimeServices::op_Member ( string lhs, string rhs ) : bool
RuntimeServices