The situation is that I want to allow users to open multiple instances of the program, but I do not want more than one user connected to the user to use the program immediately. So, for example, if the program is installed on the server, and several users can use the remote desktop on the server, I want one user to be able to run the program, but still be able to run multiple instances. I studied the use of the mutex, but from what I found, the mutex allowed only one instance of the program. Is this possible with C #?
source
share