vote up 4 vote down star

Lets say I have an array like this:

string [] Filelist = ...

I want to create an Linq result where each entry has it's position in the array like this:

var list = from f in Filelist
    select new { Index = (something), Filename = f};

Index to be 0 for the 1st item, 1 for the 2nd, etc.

What should I use for the expression Index= ?

flag

2 Answers

vote up 8 vote down check

Don't use a query expression. Use the overload of Select which passes you an index:

var list = FileList.Select((file, index) => new { Index=index, Filename=file });

link|flag
vote up 1 vote down
string[] values = { "a", "b", "c" };
int i = 0;
var t = from v in values
select new { Index = i++, Value = v};
link|flag
Why go to all that trouble instead of using the version that's provided by the framework? – Jon Skeet Nov 6 '08 at 15:37
Please don't ever do mutations within linq queries.... – Justice Nov 6 '08 at 16:25
Why not!? It works. You have full control this way. I probably wouldn't do this myself, but that's the question that was asked. – GeekyMonkey Nov 9 '08 at 0:18
But if you run/invoke/trigger the query twice you'll get differnt IDs - I wouldnt mind if there was a ToArray on the end to hilight this... – Ruben Bartelink Jan 21 at 10:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.