Consider this method signature:
public static void WriteLine(string input, params object[] myObjects) { // Do stuff. }
How can I determ
A slightly shorter and more readable way:
static bool IsParams(ParameterInfo param) { return param.IsDefined(typeof(ParamArrayAttribute), false); }