Replace usages of string.To{Lower,Upper}()

This commit is contained in:
Bartłomiej Dach
2022-06-20 14:39:47 +02:00
parent c7e92f46f4
commit 26c5b59f6d
25 changed files with 35 additions and 31 deletions

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Select
{
foreach (Match match in query_syntax_regex.Matches(query))
{
string key = match.Groups["key"].Value.ToLower();
string key = match.Groups["key"].Value.ToLowerInvariant();
var op = parseOperator(match.Groups["op"].Value);
string value = match.Groups["value"].Value;