What is the best way of referencing a dynamic delegate. I'd like to do the following with method names returned from a configuration database.
AddressOf "MethodName"
What is the best way of referencing a dynamic delegate. I'd like to do the following with method names returned from a configuration database.
AddressOf "MethodName"
AddressOf doesn't work that way, but you can use reflection to get a delegate for a method if you also know the assembly/class for the method.