Closed domialex closed 6 years ago
You should use a Mutex to limit the application to a single process. If 2 clever-docks are running, things get buggy.
bool instanceResult; var mutex = new System.Threading.Mutex(true, "uniqueName", out instanceResult); if (!instanceResult) // Close app.
You should use a Mutex to limit the application to a single process. If 2 clever-docks are running, things get buggy.