What are the steps for making domain-neutral assemblies?

后端 未结 3 973
广开言路
广开言路 2021-02-04 19:45

...and can those steps also be applied to a 3rd party assembly (that might already be strong-named)?

The context for my question should not be important, but I\'ll share

3条回答
  •  忘了有多久
    2021-02-04 20:26

    Domain-neutral assemblies share only code across appdomains. However, data is still per-appdomain. Thus, there will be one copy of your static LogSource property for each domain.

提交回复
热议问题