Yoshifumi Kawai

Results 343 comments of Yoshifumi Kawai

UnitGenerator override ToString, What other information do you need?

sorry for delayed response(I was working on a [new serializer(MemoryPack)](https://github.com/Cysharp/MemoryPack) so could not see it. I'll check soon.

Since it is Source Generator-based, it cannot be generated by dynamic code. Instead, how about the following API? ```csharp [MemoryPackFormatter(typeof(IUnionSample))] [MemoryPackUnion(0, typeof(FooClass))] [MemoryPackUnion(1, typeof(BarClass))] public partial class UnionFormatter { }...

Yes, for the deserializer's perspective, the properties appear to be deleted. In an RPC scenario, the client must be updated before the server. An updated client has no problem connecting...

It is not a project principle, but it is impossible due to binary specifications designed backwards from performance.

Due to IBufferWriter's specifications, finalizing the size later is more difficult than you might imagine. The only way to be sure is to hoard and copy once in the buffer,...

I thought it would be good to add this feature, thank you. I will try to come up with ideas for best performance. One thing I'm thinking about is. *...

I've released `v1.5.0`, it supports full-version-tolerant. improving performance is the next.

@AArnott > only use the default constructor in lieu of an attribute I'm a little unclear on what you mean. Do you mean to remove the SerializationConstructor? Also, no support...

Maybe it was not a good idea to change MOST MATCHED to the highest priority.