Good example of use of AppDomain

后端 未结 7 1637
傲寒
傲寒 2020-12-07 10:25

I keep getting asked about AppDomains in interviews, and I know the basics:

  • they are an isolation level within an application (making them different from appl
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 11:01

    App Domains are great for application stability.

    By having your application consist of a central process, which then spawns out "features" in separate appdomains, you can can prevent a global crash should one of them misbehave.

提交回复
热议问题