Utf8Json icon indicating copy to clipboard operation
Utf8Json copied to clipboard

Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).

Results 100 Utf8Json issues
Sort by recently updated
recently updated
newest added

# Summary Current UniversalCodeGenerator generated formatter code unnecessarily allocates byte[] array and others. This pull request reduces memory allocation, improves runtime initialization performance and embeds specialized automaton code for deserialization....

I have this class which I am trying to serialize\deserialize: ``` public class MyClass { private string value; public string Value { get { return this.value; } set { if...

Hi, First off: thank you so much for this amazing open-source project! I need to pre-generate code because I'm using Utf8Json in Unity with IL2CPP. The code generator seems to...

**I've set of Resolvers which I want to pass for configuring OutputFormatters and InputFormatters.** **Ex**. Utf8Json.Resolvers.CompositeResolver.Create(StandardResolver.CamelCase, EnumResolver.UnderlyingValue); Note, that in this example all enums will be serialized and deserialized as...

While serializing Task or Task,Utf8Json's builtin task formatter calls Task.Wait() or Task.Result. It causes exception while the task was cancelled or failed. This means we almost impossible to serialize TaskCancelledException,...

I am getting deserialization error , given below , any fix for the below json provided [JsonParsingException: expected:'"', actual:'o', at offset:5] Utf8Json.JsonReader.ReadStringSegmentRaw() +275 Utf8Json.JsonReader.ReadPropertyNameSegmentRaw() +56 Deserialize(Object[] , JsonReader& , IJsonFormatterResolver...

Bumps [MessagePack](https://github.com/neuecc/MessagePack-CSharp) from 1.6.1.2 to 1.9.3. Release notes *Sourced from [MessagePack's releases](https://github.com/neuecc/MessagePack-CSharp/releases).* > ## v1.9.3 > ## Changes > > 🔒 **Security fixes are included in this release**. Read more...

dependencies

Bumps [MessagePack](https://github.com/neuecc/MessagePack-CSharp) from 1.6.1.2 to 1.9.3. Release notes *Sourced from [MessagePack's releases](https://github.com/neuecc/MessagePack-CSharp/releases).* > ## v1.9.3 > ## Changes > > 🔒 **Security fixes are included in this release**. Read more...

dependencies

I found a bug in the code generation for the binary search in AutomataDictionary. A signed comparison is emitted where an unsigned one is needed. This can lead to strange...

https://www.nuget.org/packages/SpanJson https://github.com/Tornhoof/SpanJson