|
InfiniteListT Constructor (T, Int32)
|
Initializes a new instance of the
InfiniteListT class.
create a new infinite list.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic InfiniteList(
T item,
int capacity = 1
)
Public Sub New (
item As T,
Optional capacity As Integer = 1
)
public:
InfiniteList(
T item,
int capacity = 1
)
new :
item : 'T *
?capacity : int
(* Defaults:
let _capacity = defaultArg capacity 1
*)
-> InfiniteListParameters
- item
- Type: T
item to be added. - capacity (Optional)
- Type: SystemInt32
initial capacity of the list.
See Also