|
ArrayExtensionsCombineT(T, Int32, Int32, T, Int32, Int32) Method
|
Combines specified portions of arrays together into a single array.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static T[] Combine<T>(
this T[] source,
int sourceOffset,
int sourceCount,
T[] other,
int otherOffset,
int otherCount
)
public:
[ExtensionAttribute]
generic<typename T>
static array<T>^ Combine(
array<T>^ source,
int sourceOffset,
int sourceCount,
array<T>^ other,
int otherOffset,
int otherCount
)
[<ExtensionAttribute>]
static member Combine :
source : 'T[] *
sourceOffset : int *
sourceCount : int *
other : 'T[] *
otherOffset : int *
otherCount : int -> 'T[]
JavaScript does not support generic types or methods.
View SourceParameters
- source T
- Source array.
- sourceOffset Int32
- Offset into source array to begin copy.
- sourceCount Int32
- Number of bytes to copy from source array.
- other T
- Other array to combine to source array.
- otherOffset Int32
- Offset into other array to begin copy.
- otherCount Int32
- Number of bytes to copy from other array.
Type Parameters
- T
Return Value
TCombined specified portions of both arrays.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
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).
Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | sourceOffset or otherOffset is outside the range of valid indexes for the associated array -or-
sourceCount or otherCount is less than 0 -or-
sourceOffset or otherOffset,
and sourceCount or otherCount do not specify a valid section in the associated array.
|
Remarks
Only use this function if you need a copy of the combined arrays, it will be optimal
to use the Linq function ConcatTSource(IEnumerableTSource, IEnumerableTSource) if you simply need to
iterate over the combined arrays.
This function can easily throw an out of memory exception if there is not enough
contiguous memory to create an array sized with the combined lengths.
See Also