How do I get TimeSpan in minutes given two Dates?
Why not just doing it this way?
DateTime dt1 = new DateTime(2009, 6, 1);
DateTime dt2 = DateTime.Now;
double totalminutes = (dt2 - dt1).TotalMinutes;
Hope this helps.
TimeSpan span = end-start;
double totalMinutes = span.TotalMinutes;