static void Main(string[] args) { List <string> input = new List <string>() { "z", "y", "x", "w", "v", "u", "t", "s" }; Test test = new Test(); test.slowersort(input, 0, input.Count - 1); }