2

我正在创建一个自定义 BindingSource 并希望将 MethodInfo 保留为私有字段。问题,在代码中:

public class MyBindingSource : BindingSource
{

    private MethodInfo MyMethod= null;

    protected override void OnBindingComplete(BindingCompleteEventArgs e)
    {
         this.MyMethod = GetMyMethod();
         //MyMethod is not null here
    }

    void UseMyMethod (object value)
    {
        MyMethod.Invoke(SomeObject, new object[] { value });
        //MyMethod is null here, exception thrown.
    }

}

我成功存储了 MethodInfo,但是,当我尝试使用它时,它最终为空。没有调用特殊的构造函数(覆盖该字段)。OnBindingComplete 不会被调用两次。似乎没有什么暗示其他东西将其设置为空。

4

1 回答 1

1

UseMethod很可能您之前正在访问OnBindingComplete

但无论如何,为了防止这种情况,您可以执行以下操作:

public class MyBindingSource : BindingSource
{
    private MethodInfo _myMethod = null;

    private MethodInfo MyMethod
    {
        get
        {
            if(_myMethod != null) return _myMethod;

            _myMethod = GetMyMethod();
            return _myMethod;
        }
    }

    protected override void OnBindingComplete(BindingCompleteEventArgs e)
    {
    }

    void UseMyMethod (object value)
    {
        MyMethod.Invoke(SomeObject, new object[] { value });
    }
}
于 2012-09-23T14:40:34.137 回答