c#中“WriteChar”的重载均与委托“System.Timers.ElapsedEventHandler”不匹配

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSy... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Timers;

namespace ConsoleApplication4
{
class Program
{
static int counter = 0;
static string displayString = "this one letter";
static void Main(string[] args)
{
Timer myTimer = new Timer(100);
myTimer.Elapsed += new ElapsedEventHandler(WriteChar);
myTimer.Start();
Console.ReadKey();

}
static void WriteChar(Object source, EventHandler e)
{
Console.Write(displayString[counter++ % displayString.Length]);
}
}
}
展开
 我来答
百度网友34d2d1253
2011-01-13 · 超过29用户采纳过TA的回答
知道答主
回答量:92
采纳率:0%
帮助的人:95.8万
展开全部
函数原型不匹配.试试把EventHandler 改为EventArgs
如果不行就查查MSDN.ElapsedEventHandler的函数原型
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式