gpt4 book ai didi

c# - 具有泛型参数的扩展方法到泛型类

转载 作者:行者123 更新时间:2023-12-05 02:11:58 25 4
gpt4 key购买 nike

<分区>

下面的代码无法编译:

 public static class MyExtensions
{
public static Bar<M> Convert<T,M>(this Foo<T> list)
{
return new Bar<M>();
}
}


public class Program
{
static void Main(string[] args)
{
Foo<int> foo = new Foo<int>();

foo.Convert<double>();
}
}

我必须明确指定 Foo 的通用类型:

foo.Convert<int, double>();

如果扩展方法只有一个泛型参数,则无需在方法调用期间指定类型。

为什么?我可以创建这样一个不需要指定 Foo 参数的扩展方法吗?

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