質問

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