[Modify] Remove it
This commit is contained in:
parent
25dcba3a9e
commit
1ee2a84016
@ -1764,27 +1764,6 @@ namespace WebSocketSharp
|
||||
return ret;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Executes the specified delegate <paramref name="n"/> times.
|
||||
/// </summary>
|
||||
/// <param name="n">
|
||||
/// A <see cref="long"/> 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 long n, Action action)
|
||||
{
|
||||
if (n <= 0)
|
||||
return;
|
||||
|
||||
if (action == null)
|
||||
return;
|
||||
|
||||
for (long i = 0; i < n; i++)
|
||||
action ();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Executes the specified delegate <paramref name="n"/> times.
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user