vote up 2 vote down star

Consider this method signature:

public static void WriteLine(string input, params object[] myObjects)
{
    // Do stuff.
}

How can I determine that the WriteLine method's "myObjects" pararameter uses the params keyword and can take variable arguments?

flag

How does this differ from stackoverflow.com/questions/252656/… ? – Ruben Bartelink Apr 27 at 13:48

2 Answers

vote up 8 vote down check

Check for the existence of [ParamArrayAttribute] on it.

The parameter with params will always be the last parameter.

link|flag
vote up 2 vote down

Check the ParameterInfo, if ParamArrayAttribute has been applied to it:

static bool IsParams(ParameterInfo param)
{
    return param.GetCustomAttributes(typeof (ParamArrayAttribute), false).Length > 0;
}
link|flag

Your Answer

Get an OpenID
or

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