Initializes a new instance of the KernelMethodInfo class.

Namespace: Cudafy
Assembly: Cudafy (in Cudafy.dll) Version: 1.0.4106.20170

Syntax

C#
public KernelMethodInfo(
	Type type,
	MethodInfo method,
	eKernelMethodType gpuMethodType,
	bool isDummy
)
Visual Basic
Public Sub New ( _
	type As Type, _
	method As MethodInfo, _
	gpuMethodType As eKernelMethodType, _
	isDummy As Boolean _
)
Visual C++
public:
KernelMethodInfo(
	Type^ type, 
	MethodInfo^ method, 
	eKernelMethodType gpuMethodType, 
	bool isDummy
)

Parameters

type
Type: System..::..Type
The type.
method
Type: System.Reflection..::..MethodInfo
The method.
gpuMethodType
Type: Cudafy..::..eKernelMethodType
Type of the gpu method.
isDummy
Type: System..::..Boolean
if set to true is dummy.

See Also