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