gpt4 book ai didi

c# - 声明一个带有两个泛型参数的方法

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

尝试执行以下操作:

public static class Qbo<T> where T : class
{
public static List<Items> Convert(List<T> list1, List<T> list2)
{
// Merging lists of different types into one list
}
}

这样调用:

var items = Qbo<Bill>.Convert(bills, billPayments);
var moreItems = Qbo<Invoice>.Convert(invoices, payments);

但是我得到一个错误,因为该方法试图接受第一个列表类型作为第二个列表类型。有什么想法吗?

最佳答案

通过您的编辑,您的需求会更清楚一些。您已经从类定义中获得了 T,但是您现在需要该方法的另一个泛型类型。所以也使方法调用通用:

public static class Qbo<T> where T : class
{
public static List<Items> Convert<U>(List<T> list1, List<U> list2)
// ^^^ ^^^
{
// Merging lists of different types into one list
}
}

关于c# - 声明一个带有两个泛型参数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39133260/

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