(删除了不必要的混乱)
修改1
似乎我的问题不是很明确...... doh ......:)
所以......
如何写这个:
instance.Method(e => OtherClass.Fill(e, instance2.A, instance3.B));
有这样的事情:
instance.Method(new Action<IDataReader>(OtherClass.Fill));
当“方法”签名为:
时void Method(Action<IDataReader> reader)
和“填充”签名是:
void Fill(IDataReader reader, string a, string b);
更新
我想出了一个替代实现,但它仍然导致调试器进入该Fill调用。已经没有lambda符号,但它似乎仍然介入,唉......
instance.Method(delegate(IDataReader e) { OtherClass.Fill(e, instance2.A, instance3.B); });
解决方案
似乎我只需要一个从委托中调用的附加方法,然后该方法将调用另外两个参数传递给下一个方法(Fill):
instance.Method(this.Foo);
[DebuggerStepThrough()]
private void Foo(IDataReader reader)
{
OtherClass.Fill(reader, this.instance2.A, this.instance3.B)
}
答案 0 :(得分:1)
问题是,在某些地方,您的代码必须传递这些额外的参数,您的调试经验将遍历该过程。我能为您提供的最好的方法是将参数包裹起来。
或者:
Action<IDataReader> wrapper = reader => this.Fill(reader, instance2.A, instance3.B);
instance.Method(wrapper);
或:
Func<Action<IDataReader, string, string>, Action<IDataReader>> reducer = arity3 => reader => arity3(reader, instance2.A, instance3.B);
instance.Method(reducer(this.Fill));
但显然,任何一种解决方案仍然会让调试器“遍历”代码。如果没有实际传递参数,则无法传递参数。