11
votes
Interfaces with Generics - Setting to NIL
Instead of nil you must use the new Default(T) which returns the default value for the generic parameter type. And for interfaces it is nil
pr …
10
votes
How can I cast an object to a generic?
I'm using a typecast helper class that does the typecasts and also checks if the two classes are compatible.
class function TPersistGeneric<T>.Init: T;
var
o : TXPersistent; …
