[Modify] Remove it
This commit is contained in:
parent
c8b4fd6621
commit
25dcba3a9e
@ -1764,27 +1764,6 @@ namespace WebSocketSharp
|
||||
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>
|
||||
/// Executes the specified delegate <paramref name="n"/> times.
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user