I create normal threads in asp.net
application. After the thread is done what should I do ? leave it (it will get back to thread pool) or abort it.
Thread thread = new Thread(new ThreadStart(work));
Leave it. There is no sense in creating a pointless exception.