[Modify] Polish it
This commit is contained in:
		@@ -1949,9 +1949,14 @@ namespace WebSocketSharp
 | 
				
			|||||||
    /// </param>
 | 
					    /// </param>
 | 
				
			||||||
    public static void Times (this ulong n, Action<ulong> action)
 | 
					    public static void Times (this ulong n, Action<ulong> action)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
      if (n > 0 && action != null)
 | 
					      if (n == 0)
 | 
				
			||||||
        for (ulong i = 0; i < n; i++)
 | 
					        return;
 | 
				
			||||||
          action (i);
 | 
					
 | 
				
			||||||
 | 
					      if (action == null)
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      for (ulong i = 0; i < n; i++)
 | 
				
			||||||
 | 
					        action (i);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /// <summary>
 | 
					    /// <summary>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user