ObjectExporter icon indicating copy to clipboard operation
ObjectExporter copied to clipboard

Add JSON and XML support for Dictionaries

Open OmarElabd opened this issue 9 years ago • 1 comments

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 avatar Jun 12 '15 02:06 OmarElabd

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

OmarElabd avatar Jul 02 '15 19:07 OmarElabd