int start = 5;
int end = 10;

var expr =
  customers
  .Where((c, index) => ((index >= start) && (index < end)))
  .Select(c => c.Name); 
