today I was thinking about declaring this:
private delegate double ChangeListAction(string param1, int number);
but why not use this:
private Func<string, int, double> ChangeListAction;
or if ChangeListAction would have no return value I could use:
private Action<string,int> ChangeListAction;
so where is the advantage in declaring a delegate with the delegate keyword?
Is it because of C# 1.0, and with C# 2.0 came Action<T>, and with C# 3.5 came Func<T> ?