Always use Invariant shortcuts for ToLower/ToUpper

This commit is contained in:
N00MKRAD
2024-09-03 22:08:38 +02:00
parent c31c76f423
commit 9672c31fba
48 changed files with 139 additions and 235 deletions

View File

@@ -272,7 +272,7 @@ namespace Flowframes
{
try
{
return Path.GetExtension(filePath)?.ToLowerInvariant() == ".concat";
return Path.GetExtension(filePath)?.Lower() == ".concat";
}
catch
{