https://github.com/slavikdev/sharp-patterns
Collection of classes which help to organize .NET code by using design patterns.
https://github.com/slavikdev/sharp-patterns
csharp design-patterns dotnet library patterns
Last synced: about 1 month ago
JSON representation
Collection of classes which help to organize .NET code by using design patterns.
- Host: GitHub
- URL: https://github.com/slavikdev/sharp-patterns
- Owner: slavikdev
- License: other
- Created: 2017-08-30T07:35:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-20T11:43:47.000Z (over 8 years ago)
- Last Synced: 2025-11-18T01:13:22.826Z (7 months ago)
- Topics: csharp, design-patterns, dotnet, library, patterns
- Language: C#
- Homepage:
- Size: 1.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sharp Patterns
Organize your .NET code with design patterns.
[](https://ci.appveyor.com/project/slavikdev/sharp-patterns)
## Features
* *Chains* (Chain of Responsibility pattern):
* [SimpleTaskChain](https://github.com/slavikdev/sharp-patterns/wiki/SimpleTaskChain) executes tasks one by one without any result.
* [TaskChain](https://github.com/slavikdev/sharp-patterns/wiki/TaskChain) executes tasks one by one, passing previous task result to the next task. Returns last task result.
* *Repositories* (Repository pattern).
## Installation
Nuget package name is `SharpPatterns`.
```
PM> Install-Package SharpPatterns
```