0

Does silverlight provide a mechanism like full .NET framework's AppDomain for loading and unloading of assemblies? How can I unload an unused assembly?

coding4beer
  • 115
  • 8

1 Answers1

1

No, there is no way to unload assemblies in Silverlight (short of tearing down the entire app and recreating it, such as by reseting the "source" property of the object tag in HTML).

Austin Lamb
  • 3,116
  • 1
  • 22
  • 13