Is there a straightforward way using reflection to get at the parameter list for a delegate if you have its type information?
For an example, if I declare a delegate type as follows
delegate double FooDelegate (string param, bool condition);
and later get the type information for that delegate type as follows
Type delegateType = typeof(FooDelegate);
Is it possible to retrieve the return type (double) and parameter list ({string, bool}) from that type info object?