[Modify] Remove it

This commit is contained in:
sta 2022-02-09 19:39:42 +09:00
parent e3772bdeee
commit feb359af7d

View File

@ -1816,32 +1816,6 @@ namespace WebSocketSharp
action (i);
}
/// <summary>
/// Executes the specified delegate <paramref name="n"/> times.
/// </summary>
/// <param name="n">
/// A <see cref="ulong"/> that specifies the number of times to execute.
/// </param>
/// <param name="action">
/// <para>
/// An <c>Action&lt;ulong&gt;</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)
{
if (n == 0)
return;
if (action == null)
return;
for (ulong i = 0; i < n; i++)
action (i);
}
/// <summary>
/// Converts the order of elements in the specified byte array to
/// host (this computer architecture) byte order.