System.TimeSpanExtensions.TotalSeconds C# (CSharp) Method

TotalSeconds() public static method

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