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