Question:How can a single instance application be created in C#?
A System.Threading.SingleInstance can be used to ensure that only one instance of a program can run at a time.
B System.Threading.Mutex can be used to ensure that only one instance of a program can run at a time.
C Locks can be used to force a C# application to launch a single instance at a time.
D C# applications cannot be restricted to a single instance.
+ AnswerB
+ Report