We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm Swedish and using Culture sv-SE, One of the things that this does is changing the decimal separator to a comma (,)
This leads to a lot of problem for all places that uses double.ToString or String Interpolation, e.g.
frequency = double.Parse(frequencyMatch.Groups[0].ToString()); qualifier =$"/{DefaultNoteSettings.DefaultDuration}"
They should (may) be changed to
frequency = double.Parse(frequencyMatch.Groups[0].ToString(), CultureInfo.InvariantCulture); qualifier = FormattableString.Invariant($"/{DefaultNoteSettings.DefaultDuration}");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm Swedish and using Culture sv-SE, One of the things that this does is changing the decimal separator to a comma (,)
This leads to a lot of problem for all places that uses double.ToString or String Interpolation, e.g.
They should (may) be changed to
The text was updated successfully, but these errors were encountered: