C-DEngine 5.105

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

Executes the specified Action<uint> delegate n times.

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

Syntax


public static void Times(
	uint n,
	Action<uint> action
)
Public Shared Sub Times ( _
	n As UInteger, _
	action As Action(Of UInteger) _
)
public:
static void Times(
	unsigned int^ n, 
	Action<unsigned int^>^ action
)

Parameters

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