Hey guys,
I was just thinking to create a library module at my workplace which will take a Dictionary input and write to CSV file (2 columns: Key, Value)
I have everything working except I don’t know how to get around the fact that it could be a dictionary of any format (for example, a Dictionary(string,object) cannot be input). My argument type is Dictionary(string,string) but I want this to work with Dictionary of any format. How could I do this so that the Dictionary input is dynamic? I just want it to basically treat Key and Value as strings so it can be written to an output file.