gpt4 book ai didi

c# - 如何使用约束 'delegate'

转载 作者:太空宇宙 更新时间:2023-11-03 14:54:05 25 4
gpt4 key购买 nike

C# 现在允许泛型中的委托(delegate)约束。当我尝试学习新功能时,我无法找到一种实用的使用方法。由于其他人多年来一直要求此功能,我显然忽略了这里的要点。

public class Test<TDelegate> where TDelegate : Delegate
{
readonly TDelegate fd; // no way to call this
public event TD Evt; // not even legal
}

类如何使用作为委托(delegate)的泛型参数做任何有用的事情?

最佳答案

你所要做的就是:

public static void Foo<T>(T t) where T : System.Delegate
{
t.DynamicInvoke();
}

出于某种原因,普通的 Invoke() 不是可以使用的有效方法。

关于c# - 如何使用约束 'delegate',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50512506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com