本文介绍了为什么在.NET 5版本定时器类的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果

为什么有5定时器类在.NET Framework,即如下:

Why are there five timer classes in the .Net framework, namely the following:


  1. 系统.Timers.Timer

  2. System.Threading.Timer

  3. System.Windows.Forms.Timer

  4. System.Web.UI.Timer

  5. System.Windows.Threading.DispatcherTimer

  1. System.Timers.Timer
  2. System.Threading.Timer
  3. System.Windows.Forms.Timer
  4. System.Web.UI.Timer
  5. System.Windows.Threading.DispatcherTimer

为什么有Timer类的几个版本?而它们之间有什么

Why are there several versions of the Timer class? And what are the differences between them?

推荐答案

在这里你去区别:

定时器类在.NET Framework类库
比较的

Comparing the Timer Classes in the .NET Framework Class Library https://web.archive.org/web/20150329101415/https://msdn.microsoft.com/en-us/magazine/cc164015.aspx

目录


  • System.Windows.Forms.Timer

  • 与定时器System.Timers.Timer

  • System.Threading.Timer

  • 线程安全编程

  • 交易与计时器事件再进入

  • 结论

  • System.Windows.Forms.Timer
  • System.Timers.Timer
  • System.Threading.Timer
  • Thread-safe Programming with Timers
  • Dealing with Timer Event Reentrance
  • Conclusion

这篇关于为什么在.NET 5版本定时器类的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 06:51