I am writing a recursive discovery method that will basically deserialize an object. This object is always a list of dictionaries, but sometimes the dictionary will have other dictionaries as values, and sometimes the dictionary will have strings as values.
I need to somehow declare the list at the beginning. List<Dictionary<string,???>>
I'm currently pickle, does anyone know a solution?
source share