Consider this method signature:
public static void WriteLine(string input, params object[] myObjects) { // Do stuff. }
How can I determ
Check for the existence of [ParamArrayAttribute] on it.
[ParamArrayAttribute]
The parameter with params will always be the last parameter.
params