SbNativeArrayT Conversion (SbNativeArrayT to T) |
Explicit cast operator to convert a native array of T
to an array of boolean.
Namespace: OIV.Inventor.GenericAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.2.2.Release.778f4cc64de03c89c1282c66aa1f73c0e9a1408b
Syntax public static explicit operator T[] (
SbNativeArray<T> toCast
)
Public Shared Narrowing Operator CType (
toCast As SbNativeArray(Of T)
) As T()
static explicit operator array<T>^ (
SbNativeArray<T>^ toCast
)
F# does not support the declaration of new casting operators.
Parameters
- toCast
- Type: OIV.Inventor.GenericSbNativeArrayT
Native array to convert.
Return Value
Type:
TA new array of
T filled with
the data of the native buffer.
Remarks
This explicit cast performs a copy. The underlying native buffer is not shared.
See Also