C# 无法创建实例,因为 Type.ContainsGenericParameters 为 true

发布于 2024-10-23 17:49:54 字数 176 浏览 2 评论 0原文

我正在尝试反序列化 Generic;其中 T : struct 但当我调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苯莒 2024-10-30 17:49:54

Type.MakeGenericType 可能就是您正在寻找的内容为了...

Type.MakeGenericType is probably what you are looking for...

机场等船 2024-10-30 17:49:54

您必须首先使用泛型类型上的 MakeGenericType 方法创建具体类型

You have to create a concrete type first using the MakeGenericType method on your generic type

晨敛清荷 2024-10-30 17:49:54

假设您有一个泛型类的 Type t,它具有无参数构造函数,以及用作泛型类的类型参数的类型数组:

Type t = someType;
Type[] genericTypeParameters = someArrayOfTypeParameters;

调用 Type.MakeGenericType(),其中

用类型数组的元素替换类型参数
当前泛型类型定义并返回 Type 对象
代表结果...类型

然后像平常一样构造对象:

    t = t.MakeGenericType(genericTypeParameters);

    object instance = Activator.CreateInstance(t);

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:

Type t = someType;
Type[] genericTypeParameters = someArrayOfTypeParameters;

Call Type.MakeGenericType(), which

Substitutes the elements of an array of types for the type parameters
of the current generic type definition and returns a Type object
representing the resulting... type

Then construct the object as normal:

    t = t.MakeGenericType(genericTypeParameters);

    object instance = Activator.CreateInstance(t);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文