System.TimeSpanExtensions.TotalMilliseconds C# (CSharp) Method

TotalMilliseconds() public static method

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