using System;
public class Program
{
public static void Main()
TimeSpan ts;
var tmp = TimeSpan.TryParseExact("1, 2, 3, 4, 5", "d', 'h', 'm', 's', 'f", null, out ts);
tmp.Dump();
ts.Dump();
}