int retries = 3;while(true) { try { DoSomething(); break; // success! } catch { if(--retries == 0) throw; else Thread.Sleep(1000); }}
我想在一般重试函数中重写这个函数,例如:
TryThreeTimes(DoSomething);
有可能在C#吗?的代码是什么?TryThreeTimes()方法?
TryThreeTimes()
拉丁的传说
相关分类