private static void TestReadDictionary(byte[] bytes, Dictionary <int, string> test) { var sequence = bytes.ToSingleSegment(); var length = (int)MsgPackSpec.ReadMapHeader(sequence, out var readSize); ReadDictionary(test, length, sequence, readSize); }