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

TotalMilliseconds() 공개 정적인 메소드

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