vote up 5 vote down star

In .net, is there a way using reflection to determine if a parameter on a method is marked with the "params" keyword?

flag

60% accept rate

2 Answers

vote up 8 vote down check

Test to see whether the final ParameterInfo has ParamArrayAttribute applied to it.

link|flag
vote up 7 vote down

Check to see if a ParamArrayAttribute has been applied to the ParameterInfo object:

static void Main()
{
    //use string.Format(str, args) as a test
    var method = typeof (string).GetMethod(
        "Format",
        new[] {typeof (string), typeof (object[])});
    var param = method.GetParameters()[1];
    Console.WriteLine(IsParams(param));
}
static bool IsParams(ParameterInfo param)
{
    return Attribute.IsDefined(param, typeof (ParamArrayAttribute));
}
link|flag
Already said, and use Attribute.IsDefined instead. – leppie Oct 15 '08 at 11:22

Your Answer

Get an OpenID
or

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