泛型类型约束方法和泛型参数方法有什么区别

时间:2017-03-01 19:00:15

标签: c# interface icomparable

您好我想问一下,当考虑使用泛型参数的泛型类型约束方法和方法时,一种方法和另一种方法有什么区别和有什么好处。例如:

public int Foo(IComparable[] array)
{
}

public int Foo<T>(T[] array) where T : IComparable
{
}

0 个答案:

没有答案