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 Comments

  • Free-PCSupport.COM: See the original post: C# Monitor,Busy Wait,True Wait & SpinLock – Coding N Design
  • Coding N Design -- Topsy.com: This post was mentioned on Twitter by Sankarsan Bose, Sankarsan Bose. Sankarsan Bose...
  • Coding N Design -- Topsy.com: This post was mentioned on Twitter by Sankarsan Bose, Sankarsan Bose. Sankarsan Bose...
  • Coding N Design: my earlier post I had discussed about the Common Service Locator framework (IServiceLocator...
  • ASP.NET MVC Archived Blog Posts, Page 1: to VoteServiceLocator in ASP.NET MVC 3 Preview 3 – Part 1 – Coding N...
  • Featured

    BerkleyDB & C# – Part 1

    In my last post I have discussed about the BerkleyDB product family.In this post we will discuss about using BerkleyDB ...

    Got Introduced To BerkleyDB

    Every application that we build needs data.Traditionally in most of the applications we have a client component which interacts with ...

    ServiceLocator in ASP.NET MVC 3 – Part 2

    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.

    C# Monitor,Busy Wait,True Wait & SpinLock

    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 [...]

    Parallel For Loop : Break Or Stop

    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 [...]