i'm working on application scalability, , i'm wondering how monitor memory management (in particular "leaks"), , ensuring threads created , destroyed properly. there tools within visual studio doing that?
visual studio -> analyze -> start performance analysis.
this give critical points within application. give log tells how long every method takes.
there no need disposing thread, because thread class doesn't contain dispose function.
you can catch moment when thread ends using threadname.join();
function.
Comments
Post a Comment