C-DEngine 5.105

Ext..::..Times Method (UInt64, Action<(Of <(<'UInt64>)>)>)

Executes the specified Action<ulong> delegate n times.

Namespace:  WebSocketSharp
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static void Times(
	ulong n,
	Action<ulong> action
)
Public Shared Sub Times ( _
	n As ULong, _
	action As Action(Of ULong) _
)
public:
static void Times(
	unsigned long long^ n, 
	Action<unsigned long long^>^ action
)

Parameters

n
Type: UInt64
A UInt64 is the number of times to execute.
action
Type: Action<(Of <(<'UInt64>)>)>
An Action<ulong> delegate that references the method(s) to execute. A UInt64 parameter to pass to this method(s) is the zero-based count of iteration.