コード例 #1
0
        public MethodMeta       Resolve(MethodReference methodRef)
        {
            TypeMeta type = this.Resolve(methodRef.DeclaringType);

            if (type != null)
            {
                return(type.Resolve(methodRef));
            }
            return(null);
        }
コード例 #2
0
        public FieldMeta        Resolve(FieldReference fieldRef)
        {
            TypeMeta type = this.Resolve(fieldRef.DeclaringType);

            if (type != null)
            {
                return(type.Resolve(fieldRef));
            }
            return(null);
        }
コード例 #3
0
        public PropertyMeta     Resolve(PropertyReference propertyRef)
        {
            TypeMeta type = this.Resolve(propertyRef.DeclaringType);

            if (type != null)
            {
                return(type.Resolve(propertyRef));
            }
            return(null);
        }
コード例 #4
0
        public EventMeta        Resolve(EventReference eventRef)
        {
            TypeMeta type = this.Resolve(eventRef.DeclaringType);

            if (type != null)
            {
                return(type.Resolve(eventRef));
            }
            return(null);
        }