1

我正在使用反射从反射属性中设置属性。我必须使用反射,因为我不知道子属性将是什么类型,但是每次我得到 System.Target.TargetException (on the prop.SetValue) 道具都指向正确的属性

我可以找到很多 SetValue 的示例,我遇到的问题是我期望与 selectSubProcess 是 PropertyInfo 而不是实际类的事实有关

PropertyInfo selectedSubProcess = process.GetProperty(e.ChangedItem.Parent.Label);
Type subType = selectedSubProcess.PropertyType;
PropertyInfo prop = subType.GetProperty(e.ChangedItem.Label + "Specified");
if (prop != null)
        {
            prop.SetValue(process, true, null);
        }
4

1 回答 1

1

看起来流程是“类型”,而不是对象的实例。在行中

prop.SetValue(process, true, null);

您需要设置对象的实例,而不是类型。

使用“GetValue”获取您关心的对象的实例:

public void test()
{
  A originalProcess = new A();
  originalProcess.subProcess.someBoolean = false;

  Type originalProcessType = originalProcess.GetType();
  PropertyInfo selectedSubProcess = originalProcessType.GetProperty("subProcess");
  object subProcess = selectedSubProcess.GetValue(originalProcess, null);
  Type subType = selectedSubProcess.PropertyType;
  PropertyInfo prop = subType.GetProperty("someBoolean");
  if (prop != null)
  {
    prop.SetValue(subProcess, true, null);
  }

  MessageBox.Show(originalProcess.subProcess.someBoolean.ToString());
}


public class A
{
  private B pSubProcess = new B();
  public B subProcess
  {
    get
    {
      return pSubProcess;
    }
    set
    {
      pSubProcess = value;
    }
  }

}

public class B
{
  private bool pSomeBoolean = false;
  public bool someBoolean
  {
    get
    {
      return pSomeBoolean;
    }
    set
    {
      pSomeBoolean = true;
    }
  }
}
于 2013-10-03T16:59:03.720 回答