G
Guest
How do I to pass a method reference in a method parameter?
Eg:
public void MyMethod(String name) {
}
.....
AddMethod(MyMethod);
Eg:
public void MyMethod(String name) {
}
.....
AddMethod(MyMethod);