Search Results

0
votes
1answer
112 views

Use reflection to find the name of a delegate field

Let's say that I have the following delegate: public delegate void Example(); and a class such as the following: public class TestClass { Examp …
3
votes

Can I use a List<T> as a collection of method pointers? (C#)

Using .NET 3.0 (or 3.5?) you have generic delegates. Try this: List<Func<int, int, int>> methodsToExecute = new List<Func<int, int, int>>(); methods …