我有以下内容:typeof(Action<User, Int32>)
,我需要能够动态创建…
我有两个类型,我需要存储为Type
对象。
Type type1 = ...; // MyNamespace.BusinessObjects.User
Type type2 = ...; // System.Int32
// I need it to be Action<MyNamespace.BusinessObjects.User, System.Int32>
Type action = ? ;
我不知道该怎么做。
我想这应该行得通:
var actionType = typeof(Action<,>).MakeGenericType(type1,type2);