up vote 4 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

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

2 Answers

up vote 12 down vote accepted

Check for the existence of [ParamArrayAttribute] on it.

The parameter with params will always be the last parameter.

link|improve this answer
feedback

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

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

Your Answer

 
or
required, but never shown

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