Removing type from a dynamic assembly

636 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 answers

0
Alexei Levenkov On

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