Determine if only one instance is running: Difference between revisions

Line 250:
<lang csharp>
// Use this class in your process to guard against multiple instances
//
// This is valid for C# running on Windows, but not for C# with Linux.
//
using System;
using System.Threading;
Anonymous user