Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix decimal parsing issue for scientific notation in DbfNumericDecima…
…lField The `DbfNumericDecimalField` class in the `NetTopologySuite.IO.Esri` library failed to correctly parse numeric fields in scientific notation (e.g., "9.095630227029324e-05") due to the use of `decimal.Parse` without `NumberStyles.Float`. This resulted in a format exception. Updated the parsing logic to use `NumberStyles.Float` with `decimal.Parse` to handle scientific notation correctly. Affected class: `DbfNumericDecimalField`
- Loading branch information