I've added some of the new Generics into my Delphi 2009 program.
In the Structure window of the Delphi IDE, I'm getting a bunch of errors of the form:
'TList` 1' does not contain a member named 'JumpID' at line 1031 (1031:57)
My declarations and lines seem fine to me. And my program Builds without any errors and runs without problems.
The relevent declarations are:
uses
Generics.Collections;
type
TLocJump = record
LocID: string;
JumpID: string;
end;
var
LocJumpList: TList<TLocJump>;
CurCursorID: string;
I: integer;
And this is line 1031 that the message is referring to:
CurCursorID := LocJumpList[I].JumpID;
Could anyone explain what this message is, and what I can do to fix it?