[Modify] Edit it
This commit is contained in:
parent
072e7f9a82
commit
7a0b0db285
@ -1859,15 +1859,18 @@ namespace WebSocketSharp
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Executes the specified <c>Action<int></c> delegate <paramref name="n"/> times.
|
||||
/// Executes the specified delegate <paramref name="n"/> times.
|
||||
/// </summary>
|
||||
/// <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 name="action">
|
||||
/// An <c>Action<int></c> delegate that references the method(s) to execute.
|
||||
/// An <see cref="int"/> parameter to pass to the method(s) is the zero-based count of
|
||||
/// iteration.
|
||||
/// <para>
|
||||
/// An <c>Action<int></c> delegate to execute.
|
||||
/// </para>
|
||||
/// <para>
|
||||
/// The <see cref="int"/> parameter is the zero-based count of iteration.
|
||||
/// </para>
|
||||
/// </param>
|
||||
public static void Times (this int n, Action<int> action)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user