Built in background-scheduling system in .NET?

后端 未结 6 721
南笙
南笙 2021-01-21 04:14

I ask though I doubt there is any such system.

Basically I need to schedule tasks to execute at some point in the future (usually no more than a few seconds or possibly

6条回答
  •  孤街浪徒
    2021-01-21 04:54

    Since you don't want to have external reference, you might want to have a look at System.Threading.Timer, or System.Timers.Timer. Note that those classes are technically very different from the WinForms Timer component.

提交回复
热议问题