Removing type from a dynamic assembly

616 Views Asked by At

I created a new type using AssemblyBuilder / ModuleBuilder / TypeBuilder. Is there a way to remove this type at a later time from the same runtime?

1

There are 1 best solutions below

0
On

No, you can't modify/unload assembly after it is loaded at run-time.