Is it possible to call a method passing a lambda with variable number of parameters?
For example:
public void Go(Action x)
{
}
I need to call it passing parameters, such as:
Go(() => {});
Go((x, y) => {});
Go((x) => {});
Is it possible? How?