System.TimeSpanExtensions.TotalDays C# (CSharp) Méthode

TotalDays() public static méthode

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