Info
Version: | 1.0.0 |
Author(s): | Mikkel Valentin Sørensen |
Last Update: | Monday, May 28, 2018 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/mikkelvalentinsorensen/MikValSor.ObjectPool |
NuGet Url: | https://www.nuget.org/packages/MikValSor.ObjectPool |
Install
Install-Package MikValSor.ObjectPool
dotnet add package MikValSor.ObjectPool
paket add MikValSor.ObjectPool
MikValSor.ObjectPool Download (Unzip the "nupkg" after downloading)
Dependencies
.NETFramework 4.5
No dependencies.
No dependencies.
Tags
Object pools can improve application performance in situations where you require multiple instances of a class and the class is expensive to create or destroy. When a client program requests a new object, the object pool first attempts to provide one that has already been created and returned to the pool.
If none is available, only then is a new object created.