a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
26 lines
226 B
C#
26 lines
226 B
C#
class Test
|
|
{
|
|
delegate void D ();
|
|
event D E;
|
|
D proxy;
|
|
|
|
event D Changed
|
|
{
|
|
add
|
|
{
|
|
if (proxy == null)
|
|
proxy = delegate () { Foo (); };
|
|
}
|
|
remove
|
|
{
|
|
}
|
|
}
|
|
|
|
void Foo ()
|
|
{
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
} |