当前位置:  开发笔记 > 编程语言 > 正文

如何从C#中的字符串创建泛型类?

如何解决《如何从C#中的字符串创建泛型类?》经验,为你挑选了2个好方法。

我有一个像这样的Generic类:

public class Repository {...}

我需要用字符串来实例...示例:

string _sample = "TypeRepository";
var _rep = new Repository();

我怎样才能做到这一点?这甚至可能吗?

谢谢!



1> alex..:

这是我的2美分:

Type genericType = typeof(Repository<>);
Type[] typeArgs = { Type.GetType("TypeRepository") };
Type repositoryType = genericType.MakeGenericType(typeArgs);

object repository = Activator.CreateInstance(repositoryType);

回答评论中的问题.

MethodInfo genericMethod = repositoryType.GetMethod("GetMeSomething");
MethidInfo closedMethod = genericMethod.MakeGenericMethod(typeof(Something));
closedMethod.Invoke(repository, new[] { "Query String" });


与使用反射在运行时仅知道的类型创建存储库的方式相同.你需要灵活性,你需要付出代价.

2> Frans Bouma..:

首先使用获取Type对象 Type.GetType(stringContainingTheGenericTypeArgument)

然后typeof(Repository<>).MakeGenericType(theTypeObject)用来获得泛型类型.

最后用 Activator.CreateInstance

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有