对不起我的英语不好。我的 C# 代码。
我有变量:
Type t = /* Variable with any unknown type */
我需要使用过的模板:
var b = GetData</* I need used variable t in here */>();
怎么做?
或者
我需要变量
object c = /*any data*/
Type type = /*any type*/
我需要这个:
var b = (type)c;
怎么做?