C-DEngine 5.105

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

Executes the specified Action<long> delegate n times.

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

Syntax


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

Parameters

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