Whetstone Class reference
Whetstone Class reference
Whetstone
WhetStone Namespaces
WhetStone.Looping
concat Class
concat Methods
Concat Method
Concat(T) Method (IEnumerable(IEnumerable(T)))
Concat(T) Method (IList(IEnumerable(T)))
Concat(T) Method (IList(IList(T)), Nullable(Boolean))
Concat(T) Method (IList(T), IList(T))
concat
Concat
T
Method (IList
T
, IList
T
)
Concatenates two
IList
T
s.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
Copy
public
static
IList
<T>
Concat
<T>(
this
IList
<T>
this
,
IList
<T>
other
)
Parameters
this
Type:
System.Collections.Generic
IList
T
The first
IList
T
to concatenate.
other
Type:
System.Collections.Generic
IList
T
The second
IList
T
to concatenate.
Type Parameters
T
Type of the
IEnumerable
T
s.
Return Value
Type:
IList
T
A concatenated list of
this
and
other
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IList
T
. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic)
or
Extension Methods (C# Programming Guide)
.
Remarks
This simply wraps
Concat
T
(IList
IList
T
, Nullable
Boolean
)
.
See Also
Reference
concat Class
Concat Overload
WhetStone.Looping Namespace