J'essaie de faire fonctionner le bout de code suivant dans LINQPad mais je n'arrive pas à indexer dans une variable. Quelqu'un sait comment indexer dans une variable dans LINQ ?
string[] sa = {"one", "two", "three"};
sa[1].Dump();
var va = sa.Select( (a,i) => new {Line = a, Index = i});
va[1].Dump();
// Cannot apply indexing with [] to an expression of type 'System.Collections.Generic.IEnumerable<AnonymousType#1>'