TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Lazy Initialization
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Aman Gupta (1)
Jitendra Mesavaniya (1)
Munib Butt (1)
Amit Choudhary (1)
Gaurav Gahlot (1)
Jeetendra Gund (1)
Amit Patel (1)
Related resources for Lazy Initialization
No resource found
Singleton Design Pattern: Detailed Explanation and Practical Examples
7/24/2024 6:52:58 AM.
The Singleton Design Pattern ensures a class has only one instance and provides global access to it. Implementations include Basic Singleton, Thread-Safe Singleton with synchronization, Double-Checked
Harnessing Efficiency: Lazy Initialization in C# .NET
7/17/2024 12:43:28 AM.
Learn about lazy initialization in C# .NET—a vital design pattern that defers object creation until it's needed, optimizing performance and memory usage. Implementing with Lazy<T> ensures th
Using The Proxy Pattern In C#
5/7/2024 10:20:16 AM.
Explore the Proxy Pattern in C#, a structural design pattern facilitating controlled access to an object. Enhance security, logging, and lazy initialization for efficient client-server communication a
Support for Lazy Initialization in .Net 4.0
2/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 Application
12/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 .NET
10/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.0
9/22/2012 3:26:47 AM.
Lazy initialization of an object means that its creation is deferred until it is first used.