from version: 1.0.0.0
Setting culture CultureName="HU-hu" resulting runtime error on setting CultureName property.
in the property set method:
...char sep = System.Char.Parse(ControlCulture.DateTimeFormat.DateSeparator)
for HU regional settings the DateSeparator is 2 chars wide ". ", so the Parse fails;
changing sep variable's type from char to string is fixing the problem...
Comments: Issue is closed as changes are already done in the previous releases.
Setting culture CultureName="HU-hu" resulting runtime error on setting CultureName property.
in the property set method:
...char sep = System.Char.Parse(ControlCulture.DateTimeFormat.DateSeparator)
for HU regional settings the DateSeparator is 2 chars wide ". ", so the Parse fails;
changing sep variable's type from char to string is fixing the problem...
Comments: Issue is closed as changes are already done in the previous releases.