AK.F1.Timing.Utility.Tms.Operations.Format.Temperature C# (CSharp) 메소드

Temperature() 공개 정적인 메소드

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

            return F("{0:0.0}°C", value.Value);
        }