Is it possible to use one delegate for several methods with different parameters somehow? I use reflection to get all the methods in a class, and I want to assign each of th
If the parameter count, order and type are the same, yes.
Simply put, a delegate is just a method signature.