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

refer to Deserialize into existing object #32 - [ ] DynamicObjectFormatter implements `IOverwriteJsonFormatter`. - [ ] how to handle ImmutableObject, etc... - [ ] CollectionFormatters implements `IOverwriteJsonFormatter`. - [ ]...

Is it expected behavior during deserialization json to Dictionary? Another serializers such as JSON.NET and etc deserialize json int values to long by default (if type variable is object) ```...

Does Utf8json support converting strings to Enums case insensitive? So far it looks like it doesn't but I'm not entirely sure. ``` public enum Pet { Cat, .... } ```...

Bumps System.Net.Http from 4.1.0 to 4.3.4. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Net.Http&package-manager=nuget&previous-version=4.1.0&new-version=4.3.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Problem was some missing System.Globalization.CultureInfo.InvariantCulture so on a non English system the "." was interpreted as a 1000-seperator not as a decimal seperator in the fallback code of ComputeGuess

I have a class of Customer: ``` public class Customer { public string FirstName { get; set; } public string LastName { get; set; } public int Age { get;...

For example. We have some apis like this ``` { "num":1 } ``` And I have a type contains `int num;` But some how,(due to server developing which I'm uncertain),...

I can't seem to use the [DataMember()] attribute. When I use it it only shows up as. The type or namespace name 'DataMemberAttribute' could not be found (are you missing...

```csharp public interface IHoge : IFuga { int hoge { get; } } public interface IFuga { int fuga { get; } } var bin = JsonSerializer.Serialize(obj); // expected:{"fuga":0, "hoge":0...

`System.TypeLoadException: 'Type 'Utf8Json.Formatters.Sfsync_Serialization_JsonRemotingResponseBodyFormatter3' from assembly 'Utf8Json.Resolvers.DynamicObjectResolverAllowPrivateFalseExcludeNullTrueNameMutateCamelCase, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is attempting to implement an inaccessible interface.'` Value that I read in Immediate Window ``` new System.IO.StreamReader(buffer).ReadToEnd() "{}" ``` ``` C#...