请教delphi中的type自定义类型在什么地方定义,我怎么找不到
请教delphi中的type自定义类型在什么地方定义,我怎么找不到,可不可以发张图让我看看
[解决办法]
type TForm1 = class(TForm) private { Private declarations } public { Public declarations } end;type mytype=array of string;var Form1: TForm1;implementationvar v:mytype;{$R *.dfm}