Array3DTSlice(Int32, Int32) Method
Gets a new
Array3DT instance, which represents a subrange of planes of the current instance indicated by the specified
startPlaneIndex and
planeCount.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public Array3D<T> Slice(
int startPlaneIndex,
int planeCount
)
Public Function Slice (
startPlaneIndex As Integer,
planeCount As Integer
) As Array3D(Of T)
public:
Array3D<T> Slice(
int startPlaneIndex,
int planeCount
)
member Slice :
startPlaneIndex : int *
planeCount : int -> Array3D<'T>
- startPlaneIndex Int32
- The offset that points to the first plane of the returned Array3DT.
- planeCount Int32
- The desired number of planes of the returned Array3DT.
Array3DTThe subrange of planes of the current
Array3DT instance indicated by the specified
startPlaneIndex and
planeCount.