Can we use RTTI to search for functions / procedures by name and run them?

How can we find a Property or Object using RTTI , we can look for a certain function or procedure (not from an object like method , but from unit ) loaded into memory, knowing only this name?

And if we can, is it possible to execute it by sending its parameters?

+7
rtti delphi delphi-xe3
source share
1 answer

The Delphi RTTI system is type-based. However, procedures and functions with a measurement area are not type-related and therefore cannot be achieved using RTTI.

+4
source share

All Articles