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