I have a C# method with a variable length argument list declared using the params
keyword:
public void VariableLengthParameterFunction (object firstParam,
params object[] secondParam)
Is there any way of using named parameters when calling the method?