Hi, thank you for making useful library.
I wrote code like the below with MessagePack.CSharp v1.0.1.
[MessagePackObject]
public class Foo { }
var foo = new Foo();
var serialized = MessagePack.MessagePackSerializer.Serialize(foo);
// Output: 91C0 (fixarray[1], nil)
Debug.Log(string.Join("", serialized.Select(x => string.Format("{0:X}", x)).ToArray()));
I expected [] as output, but actually got [nil]. Is this behaviour what you intended?
Thanks.
Oh, it should be '[]'.
I'll check and fix it quickly.
I've fixed and released ver 1.0.2.
Thank you.
I confirmed the fix on my machine, thank you!
Most helpful comment
I've fixed and released
ver 1.0.2.Thank you.