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.
在网上浏览一些代码时,我遇到了以下情况:
~Disposable() { Dispose(false); }
这不会产生任何编译器错误,'~' 是否特别做任何事情或为什么会在那里?
这在 C#中称为终结器。它所做的是Finalize使用类似于析构函数的语法覆盖该方法。
Finalize