System.TimeSpanExtensions.TotalMinutes C# (CSharp) Method

TotalMinutes() public static method

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