What is the common way of naming parameters in a method like the following?
void MyMethod(int[] series1, int[] series2) { ... }
The two arrays there have the same purpose, maybe the method takes two arrays of names, or two series, or something similar. What is a common way to name such parameters? Would you use parameter1, parameter2, ...
or firstParameter, secondParameter, ...
or something else?
I would appreciate if you could give me an example of such a method in the .NET Framework itself.