editorconfig
This commit is contained in:
2023-10-20 19:37:19 -07:00
parent b54ea97c67
commit a4a92aacd2
68 changed files with 703 additions and 553 deletions

View File

@ -12,7 +12,7 @@ internal static class Base83
static Base83()
{
// Build inverse lookup table for fast decoding
Dictionary<char, int> charIndices = new();
Dictionary<char, int> charIndices = [];
int index = 0;
foreach (char c in _Charset)
{