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: 303
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