CapyKit/Documentation/Help/M_CapyKit_Pool_1__ctor_2.md

38 lines
1.1 KiB
Markdown
Raw Normal View History

# Pool<T>(Int32, Func<T>) Constructor
2024-04-21 03:30:36 -05:00
Initializes a new instance of the <a href="T_CapyKit_Pool_1.md">Pool(T)</a> class with the specified pool size and constructor selector.
## Definition
2024-04-21 03:30:36 -05:00
**Namespace:** <a href="N_CapyKit.md">CapyKit</a>
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0
**C#**
``` C#
public Pool(
int poolSize,
Func<T> constructorSelector
)
```
**F#**
``` F#
new :
poolSize : int *
constructorSelector : Func<'T> -> Pool
```
#### Parameters
2024-04-21 03:30:36 -05:00
<dl><dt>  <a href="https://learn.microsoft.com/dotnet/api/system.int32" target="_blank" rel="noopener noreferrer">Int32</a></dt><dd>The size of the pool.</dd><dt>  <a href="https://learn.microsoft.com/dotnet/api/system.func-1" target="_blank" rel="noopener noreferrer">Func</a>(<a href="T_CapyKit_Pool_1.md">T</a>)</dt><dd>The constructor selector used to create new instances of <em>T</em>.</dd></dl>
## See Also
#### Reference
2024-04-21 03:30:36 -05:00
<a href="T_CapyKit_Pool_1.md">Pool(T) Class</a>
<a href="Overload_CapyKit_Pool_1__ctor.md">Pool(T) Overload</a>
<a href="N_CapyKit.md">CapyKit Namespace</a>