From e3772bdeeed9b17fd16fa8514992bdd87bddfdea Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 9 Feb 2022 19:38:32 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Ext.cs | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 22222ad8..2cfe5a93 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1816,32 +1816,6 @@ namespace WebSocketSharp action (i); } - /// - /// Executes the specified delegate times. - /// - /// - /// A that specifies the number of times to execute. - /// - /// - /// - /// An Action<uint> delegate to execute. - /// - /// - /// The parameter is the zero-based count of iteration. - /// - /// - public static void Times (this uint n, Action action) - { - if (n == 0) - return; - - if (action == null) - return; - - for (uint i = 0; i < n; i++) - action (i); - } - /// /// Executes the specified delegate times. ///