コード例 #1
0
ファイル: Map.cs プロジェクト: progaudi/msgpack.spec
        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);
        }