I know what JSON is, but I don't understand when you deserialize a simple json property/value pair in a string of a bunch of property/value pairs like this: {"fileName":"SomeName, "FilePath":"SomePath"}
then what is the object and string representing in your dictionary after being deserialized?
All we have here is a key/value pair which to me would be one object, but what's the string in the dictionary, the key right? But what kind of key and why then would I need a dictionary to deserialize this to? Why not just List and object would just contain your key/value pair? or maybe List which would be same as object, but you're using a custom type.
I just want to understand when deserialized to a dictionary, what string and object are in the dictionary after being deserialized..more so what the string is in Dictionary.
I don't think I even need a here right? because there's no root object, just key/value (property/value) pairs so wouldn't be fine for each json property/value?