[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Führt eine implizite Umwandlung von Matrix3D<(Of <(<'T>)>)> in ein 3D-Array durch. Diese Umwandlung ist langsam, weil die Elemente kopiert werden müssen.

Namespace: DynamicNode.Types.Base
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)

Syntax

C#
public static implicit operator T[,,] (
	Matrix3D<T> source
)
Visual Basic
Public Shared Widening Operator CType ( _
	source As Matrix3D(Of T) _
) As T(,,)
F#
F# does not support the declaration of new casting operators.

Parameters

source
Type: DynamicNode.Types.Base..::..Matrix3D<(Of <(<'T>)>)>
Eine 3D-Matrix.

Return Value

Das Ergebnis der Umwandlung.

See Also