I\'ve written an API that will be used on the same box in (1) a windows service, (2) a web application, and (3) a windows forms application. They all need to share a very s
Use an EventWaitHandle object to construct a named event that each process can lock or block on. Works in .NET 2.0 and later.