OmarElabd / ObjectExporter

Object Exporter lets you export out an object while debugging in Visual Studio, the object can be serialized in either C#, JSON or XML.
GNU General Public License v3.0
263 stars 83 forks source link

Add JSON and XML support for Dictionaries #30

Open OmarElabd opened 9 years ago

OmarElabd commented 9 years ago

currently outputs:

    "Dict": 
    [
        [
            "Key": "a",
            "Value": "apple"
        ], 
        [
            "Key": "b",
            "Value": "bear"
        ], 
        [
            "Key": "c",
            "Value": "couch"
        ] 
    ], 

should output:

   "Dict": 
   {  
      "a":"apple",
      "b":"bear",
      "c":"couch"
   },
OmarElabd commented 9 years ago

Need to look at output when key is not a String but a non-value type object.