I've successfully used a custom JsonConverter to handle items in a dictionary that may either be a string or an object:
[JsonProperty("result", ItemConverterType = typeof(TableFieldOrStringConverter), )]
public Dictionary<string, TableField> Records { get; set; }
But now I have a property that is an array of dictionaryies.
public Dictionary<string, TableField>[] Records { get; set; }
How do I set up the custom converter to apply it to the value of the dictionary?
This is different than most questions that apply a converter to the value of a dictionary item, because I'm trying to apply the converter to the value of a dictionary item in an array of dictionaries, and the JSonPropery attribute does not appear to allow that.