Click or drag to resize
SbNativeArrayTCopy Method (SbNativeArrayT, Int32, SbNativeArrayT, Int32, Int32)
Copy count elements from source (starting at sourceIndex) to destination (starting at destinationIndex).

Namespace: OIV.Inventor.Generic
Assembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.1.1.Release.7989217834dd2b99155f267b6c8c70f9feacdedd
Syntax
public static void Copy(
	SbNativeArray<T> source,
	int sourceIndex,
	SbNativeArray<T> destination,
	int destinationIndex,
	int count
)

Parameters

source
Type: OIV.Inventor.GenericSbNativeArrayT
Source object
sourceIndex
Type: SystemInt32
Start element for copy
destination
Type: OIV.Inventor.GenericSbNativeArrayT
Destination object
destinationIndex
Type: SystemInt32
Start element for copy
count
Type: SystemInt32
Number of elements to copy
Exceptions
ExceptionCondition
ArgumentNullExceptionIf source or destination is null.
ArgumentOutOfRangeExceptionsourceIndex or destinationIndex are not valid.
See Also