mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Use static lambdas wherever possible
Thanks Rider
This commit is contained in:
@@ -39,7 +39,7 @@ namespace ArchiSteamFarm.Helpers {
|
||||
private const byte SteamParentalSCryptBlocksCount = 8;
|
||||
private const ushort SteamParentalSCryptIterations = 8192;
|
||||
|
||||
private static IEnumerable<byte> SteamParentalCharacters => Enumerable.Range('0', 10).Select(character => (byte) character);
|
||||
private static IEnumerable<byte> SteamParentalCharacters => Enumerable.Range('0', 10).Select(static character => (byte) character);
|
||||
|
||||
private static IEnumerable<byte[]> SteamParentalCodes {
|
||||
get {
|
||||
|
||||
Reference in New Issue
Block a user