vote up 4 vote down star
1

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?

flag

1 Answer

vote up 12 vote down check
    MethodInfo method = delegateType.GetMethod("Invoke");
    Console.WriteLine(method.ReturnType.Name + " (ret)");
    foreach (ParameterInfo param in method.GetParameters()) { 
        Console.WriteLine("{0} {1}", param.ParameterType.Name, param.Name);
    }
link|flag
+10 points to throw in your rep pool. Nothing but a tiny ripple in a huge lake by now, right? – Jeff Yates Jan 9 '09 at 20:47
Perfect! Digging deeper, the reason this works is that declaring the delegate is basically syntax sugar for declaring a class derived from Delegate with a new Invoke method that takes the specified parameters. Thanks for the help. – fastcall Jan 9 '09 at 20:49
@ffpf, nah - I maxed out my daily cap ages ago... but the vote helped me get another bronze, so ta ;-p – Marc Gravell Jan 9 '09 at 22:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.