using System.Collections.Generic;
public static void Main()
List<string> timeList = new List<string>();
TimeSpan totalTime = new TimeSpan(0, (int)timeList.Sum(x => getMinutes(x)), 0);
Console.WriteLine(totalTime.ToString());
public static double getMinutes(string timeIn)
string[] components = timeIn.Split(':');
TimeSpan ts = new TimeSpan(int.Parse(components[0]), int.Parse(components[1]), 0);