有两个变量
basic<type1> type_1;
basic<type2> type_2;
我要这两个变量存储另一个这样的变量
basic<type1> type_1;
basic<type2> type_2;
var type = type_1 or type_2 // What type of variable should be declared?
谢谢。
答案 0 :(得分:1)
您可以使用object
或dynamic
。
此外,如果basic<T>
继承自basic
,您将可以使用basic
作为变量类型。