.NET通过Reflection获取私有财产

时间:2011-12-19 18:13:12

标签: c# .net reflection properties

我有以下情况

Assebly A

public abstract class MyBaseEntity        
{   
    //Uncompleted method     
    public void addChild<T>(T child)
    {            

        try
        {                
            Type tInfo = this.GetType();
            PropertyInfo pInfo = tInfo.GetProperties(BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance).Where(p => p.PropertyType == typeof(ISet<T>)).FirstOrDefault();                
            MethodInfo mInfo = tInfo.GetMethod("Add");
            mInfo.Invoke(this, new object[] {child});
        }
        catch (Exception ex)
        {               
            throw ex;
        }
    }

}

装配B

 public class MyModel : MyBaseEntity
{
    public virtual int p1 { get; set; }
    public virtual int p2 { get; set; }
    public virtual DateTime p3 { get; set; }
    public virtual bool p4 { get; set; }
    private readonly ISet<MyModelChild> _p5;
    private readonly ISet<MyModelChild2> _p6;
    public virtual string p7 { get; set; }

    public MyModel()
    {
        this._p5 = new HashSet<MyModelChild>();
        this._p6 = new HashSet<MyModelChild2>();
    }

    public virtual IEnumerable<MyModelChild> P5
    {
        get { return _p5; }
    }

    public virtual IEnumerable<MyModelChild2> P6
    {
        get { return _p6; }
    }
}    

在MyBaseEntity类中,我尝试获取私有ISet子进程并调用方法“Add”。 我将“addChild”方法称为

myObject.addChild<MyModelChild>(child);

GetProperties方法不提取私有属性。它可以提取所有公共属性,但不提取私有属性。

任何人都可以帮助我?

谢谢!

1 个答案:

答案 0 :(得分:19)

您引用的两个私有字段是字段,而不是属性,当然您无法使用GetProperties找到它们(您可以使用GetFields)。