You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
354 B
6 lines
354 B
public delegate void CallBack();
|
|
public delegate void CallBack<T>(T arg);
|
|
public delegate void CallBack<T, X>(T arg1, X arg2);
|
|
public delegate void CallBack<T, X, Y>(T arg1, X arg2, Y arg3);
|
|
public delegate void CallBack<T, X, Y, Z>(T arg1, X arg2, Y arg3, Z arg4);
|
|
public delegate void CallBack<T, X, Y, Z, W>(T arg1, X arg2, Y arg3, Z arg4, W arg5); |