(エッセンス)2020年6月26日C#クラスライブラリ循環実行支援クラス


using System; namespace Core.Util { /// /// /// public class LoopHelper { /// /// /// /// /// public static void Loop(int count,Action method) { for (int i = 0; i < count; i++) { method(); } } /// /// /// /// /// public static void Loop(int count, Action<int> method) { for (int i = 0; i < count; i++) { method(i); } } } }