在C#中消防和忘记

时间:2013-06-05 04:12:57

标签: c#

在C#中是否有像火一样的事件而忘记了每一分钟?

每分钟开火一次。

    public void Earning()
    {
        var data= new Bussinesslayer().Getdata();
    }

3 个答案:

答案 0 :(得分:8)

您可以使用Timer类:
声明:

System.Timers.Timer _tmr;

初始化:

_tmr = new System.Timers.Timer();

设置:

//Assigning the method that will be called
_tmr.Elapsed += new System.Timers.ElapsedEventHandler(tmr_Elapsed);
//Setting the interval (in milliseconds):
_tmr.Interval = 1000;

启动计时器:

_tmr.Start();

该函数应具有与以下示例中相同的签名:

void tmr_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
  this.Earning();
  //please note that here you are in another thread.
}

如果您想停止计时器,可以使用:

_tmr.Stop();

答案 1 :(得分:1)

例如,使用Rx

Observable.Interval(TimeSpan.FromMinutes(1))
          .Subscribe(x => Earning());

无需线程

答案 2 :(得分:0)

public void Earning()
{
    var data= new Bussinesslayer().Getdata();

    // Wait a minute
    Task.Delay(TimeSpan.FromMinutes(1)).Wait();
    // Re-run this method
    Task.Factory.StartNew(() => Earning());
}

你需要这些包括:

using System;
using System.Threading.Tasks;