Lazy Loading in C#
Lazy Loading is a technique that delays the initialization of an object. This is a new feature of C# 4.0.
Continue readingLazy Loading is a technique that delays the initialization of an object. This is a new feature of C# 4.0.
Continue readingThe adapter design pattern is used to bridge two incompatible interfaces. It involves a single class called adapter that is
Continue readingDescription: While working with the projects, sometimes we have some deprecated methods called in our code and when we build
Continue readingA stack using an array is an abstract data structure that contains a collection of similar data elements. Stack working
Continue readingA repository design pattern is basically the coding standard that separates the data access logic and maps it to the
Continue readingWhat is Queue? It is a linear structure that follows first in first out ( FIFO) in which the operations
Continue readingExtension methods are additional custom methods. It is a new feature introduced in C# 3.0 that allows us to add
Continue readingDefinition: SOLID principles are the design principles that enable us to manage most of the software design problems. SOLID principles
Continue readingI am going to describe here several rules and conventions which are useful for developing applications and class libraries in
Continue readingIntroduction Categories of variables in C# are described into the following types − Value types: Value type variables can be
Continue reading