AK.F1.Timing.UI.Utility.Format.WindSpeed C# (CSharp) Method

WindSpeed() public static method

public static WindSpeed ( double value ) : string
value double
return string
        public static string WindSpeed(double? value)
        {
            if(value == null)
            {
                return String.Empty;
            }

            return F("{0:0.00}m/s", value.Value);
        }