[Modify] Edit it

This commit is contained in:
sta 2019-09-18 19:38:23 +09:00
parent 2bde8d4d68
commit 7e86a8d773

View File

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