|
ExtendedListT Constructor (T, Int32)
|
create new ExtendedList
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic ExtendedList(
T item,
int capacity = 1
)
Public Sub New (
item As T,
Optional capacity As Integer = 1
)
public:
ExtendedList(
T item,
int capacity = 1
)
new :
item : 'T *
?capacity : int
(* Defaults:
let _capacity = defaultArg capacity 1
*)
-> ExtendedList
Parameters
- item
- Type: T
item to add - capacity (Optional)
- Type: SystemInt32
initial capacity
See Also