C# 无法创建实例,因为 Type.ContainsGenericParameters 为 true
我正在尝试反序列化 Generic
但当我调用 ctor.Invoke(args);
时,我收到异常“无法创建实例,因为 Type.ContainsGenericParameters 为 true”。
如何传递我想要的泛型类型?
I'm attempting to deserialize a Generic<T> where T : struct
but when I call ctor.Invoke(args);
I get the exception "Cannot create an instance because Type.ContainsGenericParameters is true".
How do I pass the generic type I want it to be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Type.MakeGenericType
可能就是您正在寻找的内容为了...Type.MakeGenericType
is probably what you are looking for...您必须首先使用泛型类型上的 MakeGenericType 方法创建具体类型
You have to create a concrete type first using the MakeGenericType method on your generic type
假设您有一个泛型类的
Type t
,它具有无参数构造函数,以及用作泛型类的类型参数的类型数组:调用
Type.MakeGenericType()
,其中然后像平常一样构造对象:
Let's say you have a
Type t
of a generic class which has a parameter-less constructor, and an array of the types to use as the type parameters of the generic class:Call
Type.MakeGenericType()
, whichThen construct the object as normal: