Forex_Strategy_Builder.Dialogs.Analyzer.Over_optimization_Data_Table.NumberToString C# (CSharp) 메소드

NumberToString() 개인적인 메소드

private NumberToString ( double value ) : string
value double
리턴 string
        string NumberToString(double value)
        {
            string strValue = value.ToString();
            strValue = strValue.Replace(".", decimalSeparator);
            strValue = strValue.Replace(",", decimalSeparator);
            return strValue;
        }