Int16 - Days
Returns a TimeSpan that represents a specified number of days, where the specification is accurate to the nearest millisecond.
public static void Main() { Int16 [] values = { 1, 7, 30, 365, 1000, 2500, 10000, 15000, 32767 }; Console.WriteLine("{0,21}{1,18}","Days", "TimeSpan"); Console.WriteLine("{0,21}{1,18}","--------", "--------"); foreach (Int16 value in values) { // C# Extension Method: Int16 - Days TimeSpan interval = value.Days(); string timeInterval = interval.ToString(); int pIndex = timeInterval.IndexOf(':'); pIndex = timeInterval.IndexOf('.', pIndex); if (pIndex < 0) timeInterval += " "; Console.WriteLine("{0,21}{1,26}", value, timeInterval); } }
View Source
using System; public static partial class Extensions { /// <summary> /// An Int16 extension method that days the given this. /// </summary> /// <param name="this">The @this to act on.</param> /// <returns>A TimeSpan.</returns> public static TimeSpan Days(this Int16 @this) { return TimeSpan.FromDays(@this); } }