Hi everyone,Say i have a TypeInfo_Class representing a custom type, and i want a new instance of this class with its custom type, is there a way to do that?
I am aware that TypeInfo_Class has the methods create() and factory(), both of which return a new object of the type Object. I have tried to figure out a way to cast to the custom type using cast(...), but it seems i can't get the custom type held in TypeInfo in a way cast() will accept.
Is this possible to do? Thanks