Hi David, Which version of Lucene.Net do you use? This bug in QueryParser is fixed in 2.0.0.4(final release)
See the issue http://issues.apache.org/jira/browse/LUCENENET-36 DIGY -----Original Message----- From: David Kallesen (JIRA) [mailto:[EMAIL PROTECTED] Sent: Thursday, June 28, 2007 11:04 AM To: [email protected] Subject: [jira] Created: (LUCENENET-45) CultureInfo VS Formats CultureInfo VS Formats ---------------------- Key: LUCENENET-45 URL: https://issues.apache.org/jira/browse/LUCENENET-45 Project: Lucene.Net Issue Type: Bug Environment: .NET 2.0 Reporter: David Kallesen Priority: Trivial When using System.Single.Parse(value) we should thing on "." vs ",". Example: fms = (float) System.Single.Parse(fuzzySlop.image.Substring(1)); should be changes to something like: fms = (float) System.Single.Parse(fuzzySlop.image.Substring(1), new System.Globalization.CultureInfo("en-US")); // David -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
