https://github.com/liteobject/demo.designpattern.bridge
An example of bridge design pattern in C#
https://github.com/liteobject/demo.designpattern.bridge
bridge-pattern csharp design-patterns
Last synced: 4 months ago
JSON representation
An example of bridge design pattern in C#
- Host: GitHub
- URL: https://github.com/liteobject/demo.designpattern.bridge
- Owner: LiteObject
- Created: 2023-08-01T15:22:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T15:38:19.000Z (over 2 years ago)
- Last Synced: 2025-05-21T19:13:51.931Z (9 months ago)
- Topics: bridge-pattern, csharp, design-patterns
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bridge Design Pattern
The Bridge design pattern is a structural design pattern that decouples an abstraction from its implementation so that the two can vary independently.
## The Bridge pattern consists of two main components:
- Abstraction: Defines the interface for the client code
- Implementation: Provides the actual implementation of that interface
The two components are connected by a bridge, which allows the Abstraction to use the Implementation without the client code knowing anything about the Implementation.