1
vote
windows form application
Binary search is already built in to the .NET framework.
VB:
Dim foo As New Collections.Generic.List(Of Integer)
foo.BinarySearch(3)
C#:
…
1
vote
Is there a tool to monitor synchronisation objects (mutex, events, semaphores) in Windows?
Take a look at Intel's ThreadChecker and Parallel Studio. Most of their tools sit on top of Visual Studio.
http://soft …
