4

我有一个包含一些属性的类。一些特定的属性用属性修饰。例如:

public class CoreAddress
{
    private ContactStringProperty _LastName;

    [ChangeRequestField]
    public ContactStringProperty LastName
    {
        //ContactStringProperty has a method SameValueAs(ContactStringProperty other)
        get { return this._LastName; }
    }
    .....
}

我想在我的类中有一个方法,它遍历这个类的所有属性,过滤具有这个自定义属性的属性并调用找到的属性的成员。这是我到目前为止所拥有的:

foreach (var p in this.GetType().GetProperties())
        {
            //checking if it's a change request field
            if (p.GetCustomAttributes(typeof(ChangeRequestFieldAttribute), false).Count() > 0)
            {

                MethodInfo method = p.PropertyType.GetMethod("SameValueAs");
                //problem here        
                var res = method.Invoke(null, new object[] { other.LastName }); 

            }

        }

如果此方法是属性的实例方法,我必须提供一个目标(而不是代码中的 null)。如何在运行时获取此类实例的特定属性?

4

3 回答 3

1

由于您已经拥有 PropertyInfo,您可以调用GetValue method. 所以...

MethodInfo method = p.PropertyType.GetMethod("SameValueAs");
//problem solved
var propValue = p.GetValue(this);

var res = method.Invoke(propValue, new object[] { other.LastName });
于 2012-09-04T14:11:42.767 回答
0

使用PropertyInfo获取您需要的任何属性的值。

于 2012-09-04T14:06:44.477 回答
0

只需从属性中获取价值并像往常一样使用它。

foreach (var p in type.GetProperties())
{
         if (p.GetCustomAttributes(typeof(ChangeRequestFieldAttribute), false).Count() > 0)
         {

               //just get the value of the property & cast it.
               var propertyValue = p.GetValue(<the instance>, null);
               if (propertyValue !=null && propertyValue is ContactStringProperty)
               {
                   var contactString = (ContactStringProperty)property;
                   contactString.SameValueAs(...);
               }
         }
  }
于 2012-09-04T14:16:47.227 回答