Sets the specified device array to zero.

Namespace: Cudafy.Host
Assembly: Cudafy.Host (in Cudafy.Host.dll) Version: 1.0.4106.20172

Syntax

C#
public void Set<T>(
	T[,,] devArray
)
Visual Basic
Public Sub Set(Of T) ( _
	devArray As T(,,) _
)
Visual C++
public:
generic<typename T>
void Set(
	array<T,3>^ devArray
)

Parameters

devArray
Type: array<T,3>[,](,)[,][,]
The device array.

Type Parameters

T
Blittable type.

See Also