[Modify] Remove it

This commit is contained in:
sta 2022-02-09 19:35:24 +09:00
parent c8b4fd6621
commit 25dcba3a9e

View File

@ -1764,27 +1764,6 @@ namespace WebSocketSharp
return ret; return ret;
} }
/// <summary>
/// Executes the specified delegate <paramref name="n"/> times.
/// </summary>
/// <param name="n">
/// An <see cref="int"/> that specifies the number of times to execute.
/// </param>
/// <param name="action">
/// An <see cref="Action"/> delegate to execute.
/// </param>
public static void Times (this int n, Action action)
{
if (n <= 0)
return;
if (action == null)
return;
for (int i = 0; i < n; i++)
action ();
}
/// <summary> /// <summary>
/// Executes the specified delegate <paramref name="n"/> times. /// Executes the specified delegate <paramref name="n"/> times.
/// </summary> /// </summary>