I wrote big mathematical application with a lot of methods. After deploy it on the system with the same decimal symbol options, my application give good result. When I try deploy my application on the OS with other decimal symbol options, my application get crash.
I read about CultureInfo Class (https://docs.microsoft.com/pl-pl/dotnet/api/system.globalization.cultureinfo?view=netframework-4.7.2).
This class can give me information about decimal symbol format in OS and etc.
I can't imagine rewrote all methods for OS with not the same decimal symbol options like OS where application was compiled.
For example. Below line give a crash application on the OS with different Decimal symbol option:
double d = Double.Parse(testString);
Is it possible get solution this problem with not rewrite all methods ?