Not all assemblies are being loaded into AppDomain from the bin folder

后端 未结 3 1373
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-20 11:29

I have the following method that should retrieve a list of loaded local (in bin folder) assemblies:

static IEnumerable GetLocalAssemblies()
          


        
3条回答
  •  被撕碎了的回忆
    2020-12-20 11:59

    Try initiating any class in these missing assemblies and then run your code again.. The assemblies are loaded when needed only with the first call to anything related to that assembly.

提交回复
热议问题