show/hide this revision's text 3 deleted 130 characters in body

Yes, it's possible to combine generics with delegates, but it probably doesn't help much if you want to call them in the method, and they won't help much in different parameter counts.

public delegate void Action<T>(T x);
public delegate void Action<T,U>(T x, U y);

public void UsingMutex<T>(Action<T> x, T t) {
    // acquire mutex...
    x(t);
    // release mutex...
}
public void UsingMutex<T,U>(Action<T,U> x, T t, U u) {
    // acquire mutex...
    x(t, u);
    // release mutex...
}

But you still have to handle different number of parameters using overloads.

show/hide this revision's text 2 added 142 characters in body

Yes, it's possible to combine generics with delegates, but it probably doesn't help much if you want to call them in the method, and they won't help much in different parameter counts.

public delegate void Action<T>(T x);
public delegate void Action<T,U>(T x, U y);

public void UsingMutex<T>(Action<T> x, T t) {
    // acquire mutex...
    .. x(t);
    // release mutex...
}
public void UsingMutex<T,U>(Action<T,U> x, T t, U u) {
    // acquire mutex...
    .. x(t, u);
    // release mutex...
}

But you still have to handle different number of parameters using overloads.

show/hide this revision's text 1

Yes, it's possible to combine generics with delegates, but it probably doesn't help much if you want to call them in the method, and they won't help much in different parameter counts.

public delegate void Action<T>(T x);
public delegate void Action<T,U>(T x, U y);

public void UsingMutex<T>(Action<T> x) { ... }
public void UsingMutex<T,U>(Action<T,U> x) { ... }

But you still have to handle different number of parameters.