作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最初对 Environment.Exit 的看法是这样的:
Terminates this process and gives the underlying operating system the specified exit code.
最佳答案
MSDN 库文章当然是准确的。不,你不能只是调用 Environment.Exit() 并希望它会起作用,它有一个 CAS 需求。一个高大上,必须信任代码才能运行危险代码,SecurityPermissionFlag.UnmanagedCode。您通常只能完全信任它。
AppDomain 中的沙盒代码非常简单,this MSDN page显示如何。
关于.net - 如果不是 IsDefaultAppDomain,则从任何 AppDomain 调用的 Environment.Exit 是否会退出整个过程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15143810/
我最初对 Environment.Exit 的看法是这样的: 如果从默认 AppDomain 调用,该进程将终止。 如果从非默认的 AppDomain 调用,AppDomain 将终止并将退出代码推送
我是一名优秀的程序员,十分优秀!