Hello. I think you have a localisation issue. I Noway we use ', ' comma as decimal separator and data is stored in database with comma.
and thus the program crash i the QueryFeatures call as shown below. If I change the system settings to use pint as decimal separator the QueryFeatures is OK.
I believe double.Parse can take a CultureInfo to determine how to parse. However, I wonder if knowing which culture to use might be an issue because we need to know the culture used in generating the graphic attribute data in the first place, which could come from various sources.
From Discord report:
I believe
double.Parse
can take aCultureInfo
to determine how to parse. However, I wonder if knowing which culture to use might be an issue because we need to know the culture used in generating the graphic attribute data in the first place, which could come from various sources.