See last commit.

This commit is contained in:
schnulller
2022-06-25 23:01:52 +02:00
parent 65e18f136d
commit 056ab77888
14 changed files with 186 additions and 56 deletions

View File

@@ -29,7 +29,7 @@ public static class StringHelpers {
}
} else {
skipped = false;
if (toLower) output.Append(char.ToLower(c));
if (toLower) output.Append(char.ToUpperInvariant(c));
else output.Append(c);
}
}