Moin,
wie deklariert man in Delphi ein TDictionary<string,string> als Konstante?
Das geht ja nicht:
Delphi-Quellcode:
const
MD: TDictionary<string, string> = ( ('A', 'xxx'), ('B', 'yyy') );
// oder
// MD: TDictionary<string, string> = ( ('A': 'xxx'), ('B': 'yyy') );
danke