I am trying to create a function that creates a class at runtime lie this:
function CreateDescentantClass( pcAncestorClass : TClass; const psDescendentClassName : String ): Class;
begin
Result := psDescendentClassName of pcAncestorClass;
end;
Is this possible? I am using Delphi Alexandria