C# equivalent of rotating a list using python slice operation August 30, 2023 by Tarik var newlist = oldlist.Skip(1).Concat(oldlist.Take(1));