SbNativeArrayT Conversion (SbNativeArrayT to SbNativeArrayDouble) |
Explicit cast operator to convert an native array of T to a
native array of double.
Namespace: OIV.Inventor.GenericAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2025.1.0.Release.bbf67b7ce81225a791aa69eb415ebddead35829d
Syntaxpublic static explicit operator SbNativeArray<double> (
SbNativeArray<T> toCast
)
Public Shared Narrowing Operator CType (
toCast As SbNativeArray(Of T)
) As SbNativeArray(Of Double)
static explicit operator SbNativeArray<double>^ (
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:
SbNativeArrayDoubleAn instance of SbNativeArray<
double>.
ExceptionsException | Condition |
---|
InvalidOperationException | If native array to cast is not well known. -or- If size are incompatible. -or- If the source array has been instanciated with a managed array. |
See Also