另外一个中得到延迟的方法

private System.Diagnostics.Stopwatch m_lastStiffTime;


 m_lastStiffTime = new System.Diagnostics.Stopwatch();
 m_lastStiffTime.Start();


if(m_lastStiffTime.ElapsedMilliseconds > m_stiffTime)


 m_lastStiffTime.Stop();



代码直接贴上 简单容易

你可能感兴趣的:(另外一个中得到延迟的方法)