msgpack-cli icon indicating copy to clipboard operation
msgpack-cli copied to clipboard

MessagePack implementation for Common Language Infrastructure / msgpack.org[C#]

Results 85 msgpack-cli issues
Sort by recently updated
recently updated
newest added

### Steps to reproduce 1. Create an iOS App in Visual Studio for Mac. 2. Add a package reference to MsgPack.Cli. 3. Add the following model: ```c# public class ExampleModel...

Hi, we want to use MessagePack in our production and ran into a problem. Current stable version does not work with EnumMemberAttribute. It's important for us. I've wrote some tests...

In agreement with the previous comment, when I serialise a simple class ```csharp public class Person { public string Name { get; set; } } ``` The initial call to...

Currently Register is a generic method, and I have a situation where I need to pass a Type to Register.

Serializing with the following sources, AOT error occurred on the actual machine, I am in trouble because I do not understand the solution method. How do I fix it? ■Source...

Today the ByteArrayUnpacker supports passing in a byte[] or byte[] and startOffset but it doesn't support limiting the unpacker's view of the array (e.g. there's no way to pass in...

enhancement

I've implemented a custom MessagePackSerializer, and when trying to deserialize my type from the byte stream, which is expected to be a Map, I get an exception. At the point...

Hi. I'm using MessagePack in Unity (_not_ using IL2CPP) and also in a standalone c# application (a master server, that sends and receives objects from the (Unity-)client). Somehow I get...

I'm measuring own serializer(`ZeroFormatter`) and compare to other serializers. I found MsgPack's `MessagePackSerializer.Get` is too slow. Here is my benchmark. https://gist.github.com/neuecc/52a5e0e07e25b52eead26f93ad2b52f9 ![image](https://cloud.githubusercontent.com/assets/46207/19723270/727a4e2c-9bb5-11e6-9587-1e9a25f5dd4e.png) If get serializer in outer iteration loop, works...

enhancement
need-more-info

This code works fine: ```cs DateTime original = new DateTime(1969, 12, 31, 23, 59, 59); MessagePackSerializer ser = MessagePackSerializer.Get(); byte[] b = ser.PackSingleObject(original); Console.WriteLine(string,Join(", ", b)); ---> 199, 12, 255,...