문제

I am looking at .Net Framework process in Process Explorer and can see some random named assemblies in the list of loaded .Net Assemblies like p2m1qbui, rhrfmrlb etc. It doesnt show the path assembly loaded from either.

Can someone explain what are those assemplies?

Thanks

도움이 되었습니까?

해결책

Their are so-called dynamic assemblies, generated in memory for different purposes. Example, common usage are:

  • XML serializers used by XmlSerializer for concrete types,
  • XSLT compiled queries,
  • ASPX pages in case of ASP.NET

You can also create your own dynamic assemblies with use of Reflection.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top