这是一个来自 msdn 的示例。
public class Timer1
{
public static void Main()
{
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed+=new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 5 seconds.
aTimer.Interval=5000;
aTimer.Enabled=true;
Console.WriteLine("Press \'q\' to quit the sample.");
while(Console.Read()!='q');
}
// Specify what you want to happen when the Elapsed event is raised.
private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
Console.WriteLine("Hello World!");
}
}
我的问题针对这一行:
private static void OnTimedEvent(object source, ElapsedEventArgs e)
'source' 和 'e' 变量中隐藏着什么?我知道,它们是函数参数,但是从事件发送给它们的是什么?