"static readonly" constants should be "const" instead (#5560)

* "static readonly" constants should be "const" instead

* change fields to PascalCase
This commit is contained in:
Marco Carvalho
2023-08-13 19:07:57 -03:00
committed by GitHub
parent ddefb4fff4
commit 8edfb2bc7b
6 changed files with 21 additions and 21 deletions

View File

@ -20,7 +20,7 @@
"sdk",
};
public static readonly string MainNpdmPath = "/main.npdm";
public const string MainNpdmPath = "/main.npdm";
public const int NroAsetMagic = ('A' << 0) | ('S' << 8) | ('E' << 16) | ('T' << 24);