Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nurfarazi/design-patterns
Demonstrates the creational, structural, and behavioral design patterns in C# and .NET 8
https://github.com/nurfarazi/design-patterns
abstract-factory-pattern builder-pattern facade-pattern factory-pattern flyweight-pattern netcore prototype proxy singleton-pattern terminal-app
Last synced: about 2 months ago
JSON representation
Demonstrates the creational, structural, and behavioral design patterns in C# and .NET 8
- Host: GitHub
- URL: https://github.com/nurfarazi/design-patterns
- Owner: nurfarazi
- Created: 2023-05-22T07:54:41.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-20T18:09:45.000Z (5 months ago)
- Last Synced: 2024-08-21T10:20:41.303Z (4 months ago)
- Topics: abstract-factory-pattern, builder-pattern, facade-pattern, factory-pattern, flyweight-pattern, netcore, prototype, proxy, singleton-pattern, terminal-app
- Language: C#
- Homepage:
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Design patterns in C# and .NET
This repository contains examples of design patterns implemented in C# and .NET.
This is completely for learning purposes and to understand the concepts of design patterns.#### Creational Patterns
- ✅ Abstract Factory
- ✅ Builder
- ✅ Factory Method
- ✅ Prototype
- ✅ Singleton#### Structural Patterns
- ✅ Adapter
- ✅ Bridge
- ✅ Composite
- ✅ Decorator
- ✅ Facade
- ✅ Flyweight
- ✅ Proxy#### Behavioral Patterns
- ✅ Chain of Responsibility
- Command
- Interpreter
- Iterator
- Mediator
- Memento
- ✅ Observer
- ✅ State
- ✅ Strategy
- ✅ Template Method
- VisitorDemonstrates the creational, structural, and behavioral design patterns in C# and .NET 8
### TODO
- Add Anti-patterns with each design pattern
- Add more examples for each design pattern
- Add definition and explanation for each design pattern