CSharp examples for System:TimeSpan
Hours of TimeSpan
using System;//from w ww.ja v a 2 s. c o m public class Main{ public static TimeSpan Hours(this int span) { return new TimeSpan(span, 0, 0); } }