gpt4 book ai didi

c# - 通用方法,其中 T 是实现接口(interface)的列表

转载 作者:太空狗 更新时间:2023-10-29 23:02:39 24 4
gpt4 key购买 nike

这类似于 C# - Multiple generic types in one list

但是,我想要一个通用方法来接受所有实现相同接口(interface)的对象列表。

这段代码给出了没有隐式引用转换的错误。

public interface ITest { }
public class InterfaceUser : ITest { }
public class TestClass
{
void genericMethod<T>(T myList) where T : List<ITest> { }
void testGeneric()
{
genericMethod(new List<InterfaceUser>());
}
}

这可以做到吗?

最佳答案

定义T作为ITest并采取 List<T>作为参数

public interface ITest { }
public class InterfaceUser : ITest { }
public class TestClass
{
void genericMethod<T>(List<T> myList) where T : ITest { }
void testGeneric()
{
this.genericMethod(new List<InterfaceUser>());
}
}

关于c# - 通用方法,其中 T 是实现接口(interface)的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6672556/

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