Func<T>() vs Func<T>.Invoke()

这一生的挚爱 提交于 2019-11-28 20:59:29

There's no difference at all. The second is just a shorthand for Invoke, provided by the compiler. They compile to the same IL.

Invoke works well with new C# 6 null propagation operator, now u can do

T result = method?.Invoke();

instead of

T result = method != null ? method() : null;
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!