In python, I can take a list my_list and rotate the contents:
>>> my_list = list(range(10)) >>> my_list [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >
var newlist = oldlist.Skip(1).Concat(oldlist.Take(1));