Threads / Semaphore objects

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to learn threading synchronization using the .NET Threading
class. I am looking for the .NET Semaphore class that provides the same
semaphore functionality thats provided in the WIN32 API. Can you tell me
where it is?
 
Hi,

AFAIK there is not equivalent in the framework for Win32 semaphore, of
course you can P/Invoke this functionality, in the framework you can use a
Mutex for example.

I think I remember a couple of thread in
microsoft.public.dotnet.languages.csharp about this, do a google search

cheers,
 
Back
Top