SupportClass.Parse and 
System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
----------------------------------------------------------------------------------------------------------

                 Key: LUCENENET-85
                 URL: https://issues.apache.org/jira/browse/LUCENENET-85
             Project: Lucene.Net
          Issue Type: Bug
            Reporter: Digy
            Priority: Minor
         Attachments: SupportClass.patch

Again 
System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
 problem

       public static System.Single Parse(System.String s)
        {
            try
            {
                if (s.EndsWith("f") || s.EndsWith("F"))
                    return System.Single.Parse(s.Substring(0, s.Length - 
1).Replace(".", 
System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator));
                else
                    return System.Single.Parse(s.Replace(".", 
System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator));
            }
            catch(System.FormatException fex)
            {
                throw fex;                                      
            }
        }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to