我有一堂课public Assembly LoadedAssembly { set; get; }
var assemblyName = AssemblyName.GetAssemblyName(fullPathToDLLFile);
myClass.LoadedAssembly = Assembly.Load(assemblyName);
这门课我一直在下Application.Current.Properties["MyClass"]
。
我尝试将其设为空,Application.Current.Properties["MyClass"] = null;
但无济于事。
我看到加载的程序集工作(它里面有一个计时器并且它正在工作)。
我怎样才能清洁它?
(我不使用类似 AppDomain d = AppDomain.CreateDomain("NewDomain", null, domaininfo);
加载程序集的东西。)