Fix SixBit parser

This commit is contained in:
BtbN
2019-04-15 15:05:01 +02:00
parent 52b8f1d846
commit ed3d2ba40e
3 changed files with 64 additions and 12 deletions

View File

@@ -49,6 +49,11 @@ namespace eAmuseTest
Console.WriteLine(BytesToString(rawData));
KBinXML kbinxml = new KBinXML(rawData);
Dictionary<int, int> dd = new Dictionary<int, int>();
dd[2] = 3;
Console.WriteLine("" + dd[2]);
Console.WriteLine("" + dd[1]);
}
private static string BytesToString(IEnumerable<byte> bytes)