本文实例讲述了C#中timer定时器用法。分享给大家供大家参考。具体如下:
下面的代码通过Timer定时器每隔1000毫秒(1秒)触发一次事件
using System;
using System.Timers;
class TestTimer
{
public static void Main ()
{
Timer timer = new Timer();
timer.Elapsed + = new ElapsedEventHandler(DisplayTimeEve
项目比较大有时候会比较卡,虽然有GC自动清理机制,但是还是有不尽人意的地方。所以尝试在项目启动文件中,手动写了一个定时器,定时清理内存,加快项目运行速度。
public class Program
{
[DllImport(psapi.dll)]
static extern int EmptyWorkingSet(IntPtr hwProc); //清理内存相关
static void Main()
{
//启动定时清理内存
SetTi