想知道使用“动态”是否是在泛型类型中使用重载的唯一方法。(int)(object) 前缀有点麻烦。
public class TOfTestCase<T> {
public void otherMethod(int arg1) {
}
public void method(T arg1) {
if (typeof(T) == typeof(int)) {
otherMethod((int)(object)arg1);
}
}
}