Get rid of xUnit fixtures

This commit is contained in:
Tyrrrz
2023-02-11 23:12:15 +02:00
parent 3487849eba
commit 53b8927fce
29 changed files with 221 additions and 347 deletions

View File

@@ -6,12 +6,10 @@ public static class BinaryExtensions
{
public static string ToHex(this byte[] data)
{
var buffer = new StringBuilder();
var buffer = new StringBuilder(2 * data.Length);
foreach (var t in data)
{
buffer.Append(t.ToString("X2"));
}
return buffer.ToString();
}