Ihor Volokhovych
Ihor Volokhovych
You can pack .png into .pdf
I think it would be cool to have STJ as default but customizable deserializer. For example : in a project we want to specify `Newtonsoft.Json` for deserializing responses or `SpanJson`
Quick update : Jil is still better at performance 
I have faced this issue, too. Has there been any progress in finding a solution?
        source: https://github.com/antomys/CuriousBenchmarks/tree/master/src/main/Benchmarks.Serializers.Json
@Tornhoof Located issue here: `SpanJson.Resolvers.JsonObjectDescription`    In the provided code, `Unsubscribe has [IgnoreDataMember] attribute` ```csharp public sealed record WsSubscribe( [property: DataMember(Name = "subscription")] TSub Subscription, [property: IgnoreDataMember] bool...
As a workaround, ```csharp public sealed class WsSubscribe where TSub : ISubscription { [DataMember(Name = "subscription")] public TSub Subscription { get; init; } [IgnoreDataMember] public bool Unsubscribe { get; init;...