CSharp examples for System:DateTime Minute
Minutes of TimeSpan
using System;//from ww w . j ava 2 s. c o m public class Main{ public static TimeSpan Minutes(this int span) { return new TimeSpan(0, span, 0); } }