Hans Petter Bieker
Hans Petter Bieker
When running a dotnet core 2.0 unit test that uses a netstandard 2.0 package that uses HDF.PInvoke, it fails with the following exception: ``` System.TypeInitializationException: The type initializer for 'HDF.PInvoke.H5F'...
``` var stream1 = new MemoryStream(Encoding.UTF8.GetBytes("[1]")); var result1 = JsonSerializer.Deserialize(stream1); var stream2 = new MemoryStream(Encoding.UTF8.GetBytes("[")); var result2 = JsonSerializer.Deserialize(stream2); ``` `result1` is now `int[] { 1}` as expected. However, `result2`...
`System.Text.Json` will be addet to .NET Core 3.0. Would it be possible to add some performance benchmark between `Utf8Json` and `System.Text.Json`?
It would be nice if the readme contained some examples of what you can achieve by using this component.