forked from loafle/openapi-generator-original
* Fix locale issue for numeric string conversions Using a generated C# client from an application with a locale that formats numbers with a comma as a decimal separator will make the client send invalid numeric parameters to the API. Any numeric parameter with decimals will added to the URL with a comma ('0,15' instead of '0.15'), potentially breaking the API integration. In my specific use case, the API interpreted '0,15' as '15', resulting in pretty funky errors. This commit ensures that parameters are parsed with the invariation culture, fixing the mentioned error. * Add missing reference to System.Globalization * Update ClientUtils.mustache