20230409-1

This commit is contained in:
2023-04-09 21:07:52 +03:00
parent 455e88635a
commit 5f753c48bf
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ public sealed class ConsoleParamsParser
string? value = eqPlace == -1 ? null : consoleParam[(eqPlace + 1)..].Trim(new[] { '"' });
//Сохраняю в списке
_paramsList.Add((param, value));
_paramsList.Add((param.ToLower(), value));
}
}