Delegates with explicit "this" pointer?
Posted
by Qwertie
on Stack Overflow
See other posts from Stack Overflow
or by Qwertie
Published on 2010-06-10T22:52:22Z
Indexed on
2010/06/10
23:22 UTC
Read the original article
Hit count: 153
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!
© Stack Overflow or respective owner