Convert.ToDecimal seems to throw an error on an computer with decimal point instead of comma.
(e.g. in line 454 in Helper.cs)
Maybe it helps somebody:
For me, I could work around the error by setting the default Culture in Program.cs:
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("de");
Convert.ToDecimal seems to throw an error on an computer with decimal point instead of comma. (e.g. in line 454 in Helper.cs)
Maybe it helps somebody: For me, I could work around the error by setting the default Culture in Program.cs: CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("de");
I want to thank you for great library !!!