是否可以使用通用的加法方法

时间:2009-07-06 14:12:50

标签: c# generics

  

可能重复:
  How to cast an object into its type?
  Solution for overloaded operator constraint in .NET generics

大家好,

是否可以使用通用的加法方法? 类似的东西:

public void Add<T>(T a, T b)
{
    T c = a + b;//Error
}

实际上操作数'+'不能应用于T型。有什么方法吗?

0 个答案:

没有答案