Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上,我要做的是创建一个单例对象,只要应用程序池还活着,它就会持续存在。
IIS 应该能够实例化和销毁许多可以访问单例对象的应用程序。
到目前为止,听起来静态类应该可以完成这项工作吗?唯一的麻烦是我想在应用程序池关闭时处理它。
您需要添加一个终结器:
public class MyClass { public MyClass() { //Constructor } ~MyClass() { // Deconstructor/finalizer } }