Call default JsonSerializer in a JsonConverter for certain value type arrays
问题 I'm trying to achieve roughly what's described here: Recursively call JsonSerializer in a JsonConverter In short; To examine a value being deserialised, then either consume it in my own code, or hand it off the the default deserializer. The example uses a nifty trick to avoid the same custom code being called recursively: ... else if (reader.TokenType == JsonToken.StartObject) // Use DummyDictionary to fool JsonSerializer into not using this converter recursively dictionary = serializer