Design Patterns

How to use Builder Pattern in C#
By Tan Lee Published on Feb 16, 2024 983

The Builder pattern is a creational design pattern that enables the step-by-step construction of complex objects.

Read more
How to use Factory Method Pattern in C#
By Tan Lee Published on Feb 16, 2024 871

The Factory Method is a creational design pattern that defines an interface for creating objects in a superclass.

Read more
How to use Singleton pattern in C#
By Tan Lee Published on Feb 16, 2024 858

The Singleton is a creational design pattern that ensures a class has only one instance.

Read more
What are Design Patterns?
By Tan Lee Published on Sep 05, 2019 5.45K

This article will introduce you briefly about Design Patterns.

Read more
How to use Abstract Factory Pattern in C#
By Tan Lee Published on Feb 16, 2024 813

This post shows you how to use Abstract Factory pattern in C# code.

Read more