PreviousNext

How to Optimize Json.NET Serialization Performance

by bill-s, 2016-01-16T19:24:38.000Z

By default, JsonConvert uses reflection to recursively search through the structure of an object during the serialization process. By implementing a custom JsonConverter that already knows the exact structure of the object, you can significantly increase serialization performance.

Read More