Create an empty Dequeu with given capacity and given growth
Namespace:
RightEdge.Common
Assembly:
Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)
Syntax
| C# |
|---|
public Dequeue(
int Capacity,
double GrowthFactor
) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
Capacity As Integer, _
GrowthFactor As Double _
) |
| Visual C++ |
|---|
public:
Dequeue(
int Capacity,
double GrowthFactor
) |
Parameters
- Capacity
- Type: System..::.Int32
the initial capacity of the collection
- GrowthFactor
- Type: System..::.Double
the factor by which to grow the collection when the capacity is reached
See Also