Delegates with explicit "this" pointer?
- by Qwertie
Is it possible to adapt a method like this function "F"
class C {
public void F(int i);
}
to a delegate like Action<C,int>?
I have this vague recollection that Microsoft was working on supporting this kind of adaptation. But maybe I misremembered!