CSReportDll.cReportCompiler.getNumericVal C# (CSharp) Méthode

getNumericVal() private méthode

private getNumericVal ( String value ) : String
value String
Résultat String
        private String getNumericVal(String value)
        {
            int decimalDigit = 0;
            decimalDigit = value.IndexOf(",", 0);
            if (decimalDigit > 0)
            {
                value = value.Replace(",", ".");
            }
            return value;
        }