Tagged Questions

2
votes
1answer
136 views

Get the ordinal position while creating selected Item in a LINQ expression

How can I get the ordinal position while creating selected Items in a LINQ expression? For example: var alphaordinals = new string[] { "A", "B", "C", "D", "E" }; // etc. var q = from car in ...