Because in that case the Select takes a Func delegate to which it passes each element of the IEnumerable as a key, as well as the position of the element in the enumerable. In your case the elements are strings, from the musos array.
The following code:
string[] musos = { "David Gilmour", "Rick Wright", "Roger Waters", "Nick Mason" };
int[] keys = new int[] { 1, 4, 3, 2 };
musos.Select((k, v) => new { Value = k, Key = keys[v] })
Can be interpreted as:
musos.Select((Func<string, int, ANONYMOUS_TYPE>)delegate(string k, int v){
return new ANONYMOUS_TYPE() { Value = k, Key = keys[v] };
});
Above, the ANONYMOUS_TYPE type is just a place-holder for an anonymous type generated automatically by the compiler to represent and hold the objects returned by your lambda expression which have two public properties: Value of type string and Key of type int. This type might look like this:
class ANONYMOUS_TYPE
{
public ANONYMOUS_TYPE()
{
}
public string Value { get; set; }
public int Key { get; set; }
}
You can now imagine the implementation of Select in that case:
IEnumerable<ANONYMOUS_TYPE> Select<string, ANONYMOUS_TYPE>(IEnumerable<string> musos, Func<string, int, ANONYMOUS_TYPE> selector)
{
int pos = 0;
var results = new List<ANONYMOUS_TYPE>();
foreach(string k in musos)
{
results.add(selector(k, pos));
pos++;
}
return (IEnumerable<ANONYMOUS_TYPE>)results;
}