gpt4 book ai didi

c# - 通用参数。如何传递给构造函数然后添加到列表?

转载 作者:行者123 更新时间:2023-11-30 13:59:30 26 4
gpt4 key购买 nike

我有课

class ExpiryList
{
protected ConcurrentDictionary <GenericType, DateTime> m_list;

ExpiryList(GenericType obj, DateTime expiryDate)
{
m_list.AddOrUpdate(obj, expiryDate, (x, y) => { return expiryDate; });
}
}

我想知道如何实现它?我需要一种方法来创建此类的实例,将 int、string、String、double 等存储到 GenericType 变量中。

最佳答案

你可以让你的类通用:

class ExpiryList<TAnyType>
{
protected ConcurrentDictionary <TAnyType, DateTime> m_list;

ExpiryList(TAnyType obj, DateTime expiryDate)
{
m_list.AddOrUpdate(obj, expiryDate, (x, y) => { return expiryDate; });
}
}

关于c# - 通用参数。如何传递给构造函数然后添加到列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13348218/

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