用委托类型直接加参数是Invoke(参数)的一个捷径.
其实等价调用 Invoke();

 

类似:

 

Action<string> x = Console.WriteLine;
x("2");
x.Invoke("2");

 

相关文章: