Use invariant culture

This commit is contained in:
Tyrrrz
2023-07-29 20:47:43 +03:00
parent 4efa6094dc
commit de67cfae1c
3 changed files with 8 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ public static class BinaryExtensions
var buffer = new StringBuilder(2 * data.Length);
foreach (var b in data)
buffer.Append(b.ToString("X2"));
buffer.Append(b.ToString("x2"));
return buffer.ToString();
}