I want to select array values from specific indexes Now I have this.
var xs = new[] { 11,12,13,14,15 };
var ind = new[] { 3,2,1,0 };
var results = xs.Where((x, idx) => ind.Contains(idx)).ToArray();
The result is {11,12,13,14} However, I want my result to be ordered by index array which should be {14,13,12,11}
Thank you very much