System.TimeSpanExtensions.TotalDays C# (CSharp) Method

TotalDays() public static method

public static TotalDays ( this timeSpan ) : double?
timeSpan this
return double?
		public static double? TotalDays(this TimeSpan? timeSpan)
		{
			return timeSpan.Select(x => x.TotalDays);
		}