|
UtilsblowUpT Method (ListT, Int32)
|
Copy last element of list so that list has s elements.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static void blowUp<T>(
List<T> l,
int s
)
Public Shared Sub blowUp(Of T) (
l As List(Of T),
s As Integer
)
public:
generic<typename T>
static void blowUp(
List<T>^ l,
int s
)
static member blowUp :
l : List<'T> *
s : int -> unit
Parameters
- l
- Type: System.Collections.GenericListT
list of elements. - s
- Type: SystemInt32
number of elements that list needs to have.
Type Parameters
- T
- Type of items in the list to blow up.
See Also