using System.Collections.Generic;
public static void Main()
List<string> horaString = new List<string>()
List<TimeSpan> horaTimespan = new List<TimeSpan>()
horaString = horaString.OrderBy(p => p).ToList();
horaTimespan = horaTimespan.OrderBy(p => p.Hours).ToList();
Console.WriteLine("String crescente");
horaString.ForEach(p => Console.WriteLine(p));
Console.WriteLine("Time Span crescente");
horaTimespan.ForEach(p => Console.WriteLine(p));
horaString = horaString.OrderByDescending(p => p).ToList();
horaTimespan = horaTimespan.OrderByDescending(p => p.Hours).ToList();
Console.WriteLine("\nString decrescente");
horaString.ForEach(p => Console.WriteLine(p));
Console.WriteLine("Time Span decrescente");
horaTimespan.ForEach(p => Console.WriteLine(p));