Related resources for Lazy Initialization
  • Support for Lazy Initialization in .Net 4.02/5/2021 5:40:42 AM. The Lazy initialization can be seen in designing the singleton pattern where we can have static readonly property in a nested class that initializes the singleton object in a Lazy way.
  • Leveraging Lazy Instantiation In Our Application12/18/2017 12:24:43 AM. In this video, I have talked about optimizing an application by using Lazy Initialization in an application that is using dependency injection and is therefore loosely coupled.Enjoy the video.
  • Lazy Initialization in .NET10/31/2014 4:32:41 AM. In this article, we will learn the basics of Lazy Initialization in .NET and how to implement it in our applications.
  • Lazy Initialization in .NET 4.09/22/2012 3:26:47 AM. Lazy initialization of an object means that its creation is deferred until it is first used.