using System;
public class Program
{
public static void Main()
TimeSpan time = TimeSpan.FromSeconds(26.967);
//here backslash is must to tell that colon is
//not the part of format, it just a character that we want in output
string str = time .ToString("hh/:mm/:ss");
Console.WriteLine(str);
}