ListAppend(T) Method
[This content is no longer valid. For the latest information on "M", "Quadrant", SQL Server Modeling Services, and the Repository, see the Model Citizen blog.]
Namespace: System.Dataflow
Assembly: System.Dataflow (in System.Dataflow.dll)
Syntax
'Declaration
PublicSharedFunctionListAppend(Of T) ( _
listAsIList(Of T), _
ParamArrayitemsAs T() _
) AsIList(Of T)
'Usage
DimlistAsIList(Of T)
DimitemsAs T()
DimreturnValueAsIList(Of T)
returnValue = RuntimeUtilities.ListAppend(list, _
items)
publicstaticIList<T> ListAppend<T>(
IList<T> list,
params T[] items
)
public:
generic<typename T>
staticIList<T>^ ListAppend(
IList<T>^ list,
... array<T>^ items
)
JScript does not support generic types or methods.
Type Parameters
- T
Parameters
- list
Type: System.Collections.Generic. . :: . .IList< (Of < ( <'T> ) > ) >
- items
Type: array<T> [] () [] []
Return Value
Type: System.Collections.Generic. . :: . .IList< (Of < ( <'T> ) > ) >
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see https://msdn.microsoft.com/en-us/library/8skskf63(v=vs.85).