Yamamari.FactoryPattern
1.0.17
dotnet add package Yamamari.FactoryPattern --version 1.0.17
NuGet\Install-Package Yamamari.FactoryPattern -Version 1.0.17
<PackageReference Include="Yamamari.FactoryPattern" Version="1.0.17" />
<PackageVersion Include="Yamamari.FactoryPattern" Version="1.0.17" />
<PackageReference Include="Yamamari.FactoryPattern" />
paket add Yamamari.FactoryPattern --version 1.0.17
#r "nuget: Yamamari.FactoryPattern, 1.0.17"
#:package Yamamari.FactoryPattern@1.0.17
#addin nuget:?package=Yamamari.FactoryPattern&version=1.0.17
#tool nuget:?package=Yamamari.FactoryPattern&version=1.0.17
Factory by Yamamari
This library provides a super simple implementation of a basic factory pattern. The factory allows for users to specify a concrete type to use when an interface is requested. Any future code requesting an instance of the interface will have a new instance of the concrete type created and sent over.
The example below highlights the full lifecycle of this simple factory implement.
var factory = new Factory();
factory.SetImplementation<interface,class>();
var instance = factory.Make<interface>();
Notes
- The concrete types provided must have a parameterless constructor (it's not enough to provide default values)
- The factory type itself is not a singleton, so to make best possible use of it you should create it at start-up and then pass it around (or make your own singleton)
- It's configuration is done with code (not app settings) to aide in refactoring and testing
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- Yamamari.AutoVersion (>= 1.0.8)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Yamamari.FactoryPattern:
| Package | Downloads |
|---|---|
|
Yamamari.ShellSharp
A framework for easily creating C# classes that can be invoked via the command line. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|