.net reflection and the "params" keyword

.net, c#, reflection

Solution

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

Problem

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

Original source

Related problems