What is the best way to reference a dynamic delegate. I would like to do the following with the method names returned from the config database.
AddressOf "MethodName"
Through reflection (specifically Type.GetMethod ).
Use classes in the System.Reflection namespace.
AddressOf doesn't work this way, but you can use reflection to get a delegate for a method if you also know the assembly / class for that method.