@ -1923,9 +1923,14 @@ namespace WebSocketSharp
/// </param>
public static void Times (this uint n, Action<uint> action)
{
if (n > 0 && action != null)
if (n == 0)
for (uint i = 0; i < n; i++)
return;
action (i);
if (action == null)
}
/// <summary>