Forex_Strategy_Builder.NumericParam.AnotherValueToString C# (CSharp) Method

AnotherValueToString() public method

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