How to store a function pointer in C#

Posted by Joshua on Stack Overflow See other posts from Stack Overflow or by Joshua
Published on 2010-03-31T03:02:59Z Indexed on 2010/03/31 3:13 UTC
Read the original article Hit count: 275

Filed under:
|
|
|

Let's say I want to store a group of function pointers in a List<(*func)>, and then later call them, perhaps even with parameters... Like if I stored in a Dict<(*func), object[] params> could I call the func with the parameters? How would I do this?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET