Forex_Strategy_Builder.NumericParam.AnotherValueToString C# (CSharp) 메소드

AnotherValueToString() 공개 메소드

Gets the corrected value of parameter as a string.
public AnotherValueToString ( double dAnotherValue ) : string
dAnotherValue double
리턴 string
        public string AnotherValueToString(double dAnotherValue)
        {
            return String.Format("{0:F" + point.ToString() + "}", dAnotherValue);
        }