c# – ThreadStart和Action之间的区别

前端之家收集整理的这篇文章主要介绍了c# – ThreadStart和Action之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人知道之间的区别吗
Dispatcher.BeginInvoke(DispatcherPriority.Background,new ThreadStart(() =>
{

Dispatcher.BeginInvoke(DispatcherPriority.Background,new Action(() =>
{

解决方法

应该没有区别. ThreadStart和Action定义为
public delegate void ThreadStart();

public delegate void Action();

即委托没有参数,没有返回值.所以他们在语义上是一样的.

然而,我会使用Action而不是ThreadStart,因为ThreadStart与Thread构造函数强烈关联,因此与ThreadStart的代码可以提示直接创建线程,因此会略有误导.

原文链接:https://www.f2er.com/csharp/91195.html

猜你在找的C#相关文章