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

Unable to Deserialize a class that inherits a ``dictionary`` when using ``int`` as its key. i.e. ``Dictionary``. The use case for this is pulling info from a database and storing...

Fix for the issue #85 and test for it. Deserializator is failing to deserialize exponent decimals because it is trying to read a number segment, changed to ReadNextBlockSegment

I really would like to be able to mirror the `StandardResolvers` to implement other forms of naming conventions. I have a need for a dash-case serialiser and it seems very...

Currently, Utf8Json supports serialising to and from classes implementing `System.Collections.Generic.IDictionary` if and only if that class has two generic type arguments. I ask whether that restriction could be lifted? Given...

All patches that were needed in order to use the library in SkuVault project for serializing events for EventStore

JSON.Net has `camelCaseNamingStrategy.ProcessDictionaryKeys = true;`, is there an equivalent or something I can implement to do so?

When using -> return Utf8Json.JsonSerializer.ToJsonString(this); returns {} When using -> return Utf8Json.JsonSerializer.ToJsonString(new Message(...)); returns json correct this is of type Message

this is my WebSocket receive code, and i was wondering if i or someone could add in support to avoid the call to List.ToArray to skip another allocation? possibly having...

I am using utf8json to deserialize unknown json structures to a dynamic. It does work very well unlike others I have tried... I do have one question though: Is it...