10.2 Tokyo TJsonSerializer and JSON.Converters
April 4, 2017
Author: h.mohri
First declare with Pascal to use the converter and generics.
////
unit Unit2;
interface
uses
  System.JSON.Converters, System.JSON.Serializers, System.Generics.Collections;
type
  TListString = TList<String>;
  TDictionaryStrStr = class(TDictionary<String, String>)
    constructor Create; overload;
  end;
  TTJsonListConverterString =…    
    




