Facade Design Pattern in C#.Net

Design patterns provide efficient and re-usable solutions in software development. If you are new to Design Pattern, please read my earlier blog – Design Pattern in ASP.NetFacade Design Pattern comes under Structural Design Pattern. In short, Facade means the exterior appearance. It means in Facade design pattern we hide something and show only what actually client … Read more

Thread Safety Singleton

If you are new to design pattern please read my blog on Design Pattern then read about Singleton Design Pattern.So let’s continue about Thread Safety Singleton.There are various ways to implement Singleton Design Pattern. No Thread Safe Thread Safety Thread Safety using Double Check Locking Lazy Instantiation I will write about Thread Safety Singleton here, No … Read more