I have
var
propInfo : PPropInfo; // Yes, I know this is deprecated
begin
if (propInfo <> nil) and (propinfo.getproc <>nil)
The "getproc" seems to be forbidden - D2005 tells me it's undefined. I've
looked at the CodeCompletion list and nothing there seems to resemble
GetProc.
Would appreciate any pointers (no pun intended)
Thanks,
David Jameson
> I'm trying to port some code into .net and struggling with converting
> TypInfo stuff
You might consider switching to .Net "reflection", it is much more
powerful than the old Delphi Typinfo stuff.
Danny
---