What does this comparer-based sort produce?var nums = new List<string> { "10", "2", "1" }; nums.Sort(Comparer<string>.Create( (x, y) => int.Parse(x).CompareTo(int.Parse(y)))); Console.WriteLine(string.Join(",", nums));