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

TotalMinutes() public static méthode

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