Multithread synchronisation in VB.net
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I'm writing a plugin system in VB.net, and each plugin Implements a base class. (Done). Now I'm making the parent framework that will house and execute each plugin. What I am doing is I will be creating a Thread for each plugin. Then what I want to have is a safe way run the Threads so that if the parent application wants to close, it gracefully closes down the thread before close. Has anyone got any examples of performing something like this?