Hi,
Ich suche eine Möglichkeit ein Assoziative Arrays zu nutzen.
Ich habe jetzt schon von die Folgende Möglichkeit gefunden:
Delphi-Quellcode:
type
SomeClass = class
public
function GetArrayProp(Index: string): string;
procedure SetArrayProp(Index: string; Value: string);
property ArrayProp[Index: string]: string read GetArrayProp write SetArrayProp;
die Frage ist wie organisiere ich das intern am besten. Das Problem ist das in meinem Fall ständig werte dazukommen und wieder gelöscht auf nil gesetzt werden.
ich brauchte in meiner Anwendung folgende Struktur:
Clients[34] := TClient...
Clients[234] := TClient...
Clients[12] := TClient...
User['deltachaos'][0] := 34;
User['deltachaos'][1] := 234;
User['deltachaos'][2] := 12;