msgpack-cli
msgpack-cli copied to clipboard
MessagePack implementation for Common Language Infrastructure / msgpack.org[C#]
Hi, Do you have plans to support .net standard 2? I attempted to use this library to enhace serialisation speed with Blazor, but was unable to due to the lack...
 **Error content:** The project's default XML namespace must be the MSBuild XML namespace. If the project was created in MSBuild 2003 format, add xmlns="http://schemas.microsoft.com/developer/msbuild/2003" to the element. If the...
Hi, Data sent from C# gives warning in ruby while unpacking show extra bytes. If there is missing interop then how it could be helpful using same framework (msgpack) in...
First of all, thanks for a great library -- very nice! My one suggestion is to add an overload on PackBinary that takes these parameters: Packer PackBinary(byte[] array, int offset,...
Subj. Currently in my case convert to Binary too slow and I know type it means call VerifyUnderlyingRawType not needed. (VerifyUnderlyingRawType is the slowest function here) Thanks.
Is there a way to control the `AssemblyBuilderAccess` flags which are used internally to create the dynamic assembly? Having a case where I need to serialize a type which lives...
``` private static byte[] Allocate( byte[] old, int requestSize ) { if ( old.Length < 256 ) { return new byte[ 256 ]; } // Use golden ratio to improve...
Hi, We have specific needs where using PropertyName we wanted to skip serialization of property in object. We cannot specify design time attribute as same object has been used and...
`.editorconfig` is staled because of latest visual studio update introduces case block indentation settings.
Hi, In our scenario we have a class which contains a Dictionary and List members. The de-serialization process provides us MessagePackObject instead of System.Object even though the serialization resulted bytes...