I've got a TDictionary that stores a bunch of objects indexed by name, and I'd like to be able to examine all of the objects. So I tried this:
var enumerator: TMyObject;
begin
for enumerator in myDictionary do
But that wouldn't compile. "Incompatible types: 'TMyObject' and 'TPair'
So I tried it a bit differently:
var enumerator: TPair<string, TMyObject>;
That didn't compile either. This error message is even stranger: Incompatible types: 'TPair' and 'TPair'
So apparently I need some sort of funky grammar to enumerate my dictionary with a for .. in loop. Anyone know how to declare it properly?
EDIT: Fabio Gomes gave an example that works properly, but my code still doesn't compile using his method. Maybe it's because I'm working in a different unit? The dictionary and the class it's using for the Value side are both defined in one unit, and this code is elsewhere. Does that make it a bug in the compiler? Can anyone verify this?
EDIT 2: Found the problem. if anyone's interested.
