0

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?

pmohandas
  • 3,669
  • 2
  • 23
  • 25

1 Answers1

1

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

Alexei Levenkov
  • 98,904
  • 14
  • 127
  • 179