C# 泛型多种参数类型与多重约束 示例

C# 泛型多种参数类型与多重约束 示例

1
2
3
4
5
6
7
8
9
10
11
12
interface IMyInterface
{
}
 
class Dictionary<TKey, TVal>
    where TKey : IComparable, IEnumerable
    where TVal : IMyInterface
{
    public void Add(TKey key, TVal val)
    {
    }
}
原文地址:https://www.cnblogs.com/sanyejun/p/7192382.html