System.TimeSpanExtensions.TotalSeconds C# (CSharp) 메소드

TotalSeconds() 공개 정적인 메소드

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