Is it possible to create a list of anonymous delegates in C#? Here is code I would love to write but it doesn't compile:
Action<int> method;
List<method> operations = new List<method>();
|
|
Is it possible to create a list of anonymous delegates in C#? Here is code I would love to write but it doesn't compile:
|
||
|
|
|
|
You can write this, for example
|
||
|
|
|
The problem with your code is that you are trying to specify an instance as a type argument to List.
As another poster mentions, you just need to declare the type of list as e.g.
|
||||||
|
|
|
It's certainly possible to create a list of a specific delegate type, like Action or Func, or any others. Since anonymous delegates can be cast to any delegate type with a compatible signature, you can create a list of delegates as long as they have compatible signatures. I don't think creating a list of delegates with multiple kinds of signatures would be of much use, since having an unspecified signature would make it very hard to call a delegate. You should be able to do so with reflection, though. In that case you can just use a list of object. |
||
|
|