a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
33 lines
343 B
C#
33 lines
343 B
C#
|
|
delegate void EventHandler (object sender);
|
|
delegate void EventHandler<T> (T sender);
|
|
|
|
class T
|
|
{
|
|
void Test ()
|
|
{
|
|
Attach (OnClick);
|
|
}
|
|
|
|
void Attach (EventHandler handler)
|
|
{
|
|
throw null;
|
|
}
|
|
|
|
void Attach (EventHandler<string> handler)
|
|
{
|
|
}
|
|
|
|
void OnClick (string sender)
|
|
{
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
new T ().Test ();
|
|
}
|
|
}
|
|
|
|
|
|
|