ClassName

发布于 2024-08-12 12:16:22 字数 331 浏览 5 评论 0原文

基本上我需要的是使用我在通用类型中使用 Type.GetType 获得的类型,
有可能吗,如果有的话怎么办? 我需要这样的东西:

Type t = Type.GetType("mynamespce.a.b.c");
var x = GenericClass<t>();

重复

Basically what I need is to use the Type that i got using Type.GetType in a Generic Type,
is it possible, if yes how ?
I need something like this:

Type t = Type.GetType("mynamespce.a.b.c");
var x = GenericClass<t>();

Duplicate

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

走过海棠暮 2024-08-19 12:16:22

可以这样做: http://msdn.microsoft.com/en-us /library/b8ytshk6.aspx(请参阅“构造泛型类型的实例”部分)

以下示例创建一个 Dictionary

Type d1 = typeof(Dictionary<,>);
Type[] typeArgs = {typeof(string), typeof(object)};
Type constructed = d1.MakeGenericType(typeArgs);
object o = Activator.CreateInstance(constructed);

It can be done: http://msdn.microsoft.com/en-us/library/b8ytshk6.aspx (See section "Constructing an Instance of a Generic Type")

The following example creates a Dictionary<string,object>:

Type d1 = typeof(Dictionary<,>);
Type[] typeArgs = {typeof(string), typeof(object)};
Type constructed = d1.MakeGenericType(typeArgs);
object o = Activator.CreateInstance(constructed);
余生再见 2024-08-19 12:16:22

您可以使用 Type.MakeGenericType 和 Activator.CreateInstance 来创建泛型类型的实例,例如,

Type t = Type.GetType("mynamespce.a.b.c");
Type g = typeof(GenericClass<>).MakeGenericType(t);
object x = Activator.CreateInstance(g);

但如果您正在寻找的话,它不会在代码中被强类型化为泛型类的类型。这是不可能的,因为 C# 不允许您使用开放泛型类型。

You can use Type.MakeGenericType and Activator.CreateInstance to make an instance of the generic type, e.g.

Type t = Type.GetType("mynamespce.a.b.c");
Type g = typeof(GenericClass<>).MakeGenericType(t);
object x = Activator.CreateInstance(g);

But it won't be strongly typed as the type of generic class in your code, if that's what you're looking for. That isn't possible as C# doesn't allow you to work with open generic types.

节枝 2024-08-19 12:16:22
Type t = Type.GetType("mynamespce.a.b.c");
Type gt = typeof(GenericClass<>).MakeGenericType(t);
var x = Activator.CreateInstance(gt);
Type t = Type.GetType("mynamespce.a.b.c");
Type gt = typeof(GenericClass<>).MakeGenericType(t);
var x = Activator.CreateInstance(gt);
无所的.畏惧 2024-08-19 12:16:22

是的,确实如此,但你必须进行进一步的反思。您将得到作为 System.Object 的结果对象。

object obj = Activator.CreateInstance(typeof(GenericClass<>).MakeGenericType(Type.GetType("mynamespce.a.b.c")));

Yes, it is, but you will have to use further reflection. And you get the resulting object as a System.Object.

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