Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
If I have the following query; var ch = data.GroupBy(g => g.myField) .Select((g, index) => new { cha = g.Key, n = index }); How can I add a new element to ch (i need to keep it ordered and add it at the end) Thank