In Focus
July 2010 Community Tech Days Presentation
Here goes my presentation for July 2010 Microsoft KolkataNET Community Tech Days Parallel Programming in .NET View more presentations from SANKARSAN BOSE.
[continue reading...]Recent Posts
Recent Comments
Featured
In my last post I have discussed about the BerkleyDB product family.In this post we will discuss about using BerkleyDB ...
In my earlier post I had discussed about the Common Service Locator framework (IServiceLocator interface)and how we can implement an adapter for the StructureMap container.In this post we will take look into how the new ASP.NET MVC provides support to plug in this ServiceLocator.
In my last two posts I had discussed about thread synchronization,critical sections and System.Threading.Monitor class.What we have seen is, a critical section in the code where thread synchronization is required is protected by a lock.When a thread encounters a critical section it tries to acquire the lock,if successful it executes the code or else waits [...]
In my last post I had discussed about Parallel For loops and in what situation it can be useful compared to a sequential loop.In this post we will take a look at how to break or exit from a Parallel For loop.We can use the break or exit keywords for this purpose as Parallel For [...]