延迟调用
Posted xupenglb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了延迟调用相关的知识,希望对你有一定的参考价值。
/// <summary> /// 延迟调用 /// </summary> /// <param name="method"></param> /// <param name="delayTime"></param> public static void DelayInvoke(Action method, int delayTime = 2000) { System.Timers.Timer timer = new System.Timers.Timer(delayTime); timer.Elapsed += new System.Timers.ElapsedEventHandler((a, b) => { method(); }); //执行一次 false timer.AutoReset = false; //是否执行System.Timers.Timer.Elapsed事件 timer.Enabled = true; }
以上是关于延迟调用的主要内容,如果未能解决你的问题,请参考以下文章