asp.net mvc - what does '~' mean/do in visual studio C# -


this question has answer here:

while browsing code online i've come across following:

~disposable() {    dispose(false); } 

this doesn't produce compiler errors, '~' doing in particular or why there?

that called finalizer in c#. override finalize method using syntax similar destructor.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -