Formats a time as a string in the form "H:mm" ie: 9:45.
public static string FormatTimeSpan(this TimeSpan ts)
public static string FormatTimeSpan(this TimeSpan? ts)
TimeSpan or TimeSpan? value to convert into the string format "H:mm".
string time = TimeSpan.Zero.FormatTimeSpan();