标签: 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型。有什么方法吗?