|
|
|
@ -1859,15 +1859,18 @@ namespace WebSocketSharp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Executes the specified <c>Action<int></c> delegate <paramref name="n"/> times.
|
|
|
|
/// Executes the specified delegate <paramref name="n"/> times.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="n">
|
|
|
|
/// <param name="n">
|
|
|
|
/// An <see cref="int"/> is the number of times to execute.
|
|
|
|
/// An <see cref="int"/> that specifies the number of times to execute.
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
/// <param name="action">
|
|
|
|
/// <param name="action">
|
|
|
|
/// An <c>Action<int></c> delegate that references the method(s) to execute.
|
|
|
|
/// <para>
|
|
|
|
/// An <see cref="int"/> parameter to pass to the method(s) is the zero-based count of
|
|
|
|
/// An <c>Action<int></c> delegate to execute.
|
|
|
|
/// iteration.
|
|
|
|
/// </para>
|
|
|
|
|
|
|
|
/// <para>
|
|
|
|
|
|
|
|
/// The <see cref="int"/> parameter is the zero-based count of iteration.
|
|
|
|
|
|
|
|
/// </para>
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
public static void Times (this int n, Action<int> action)
|
|
|
|
public static void Times (this int n, Action<int> action)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|