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

TotalSeconds() public static méthode

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