博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
代码清单3-12 获取泛型和已构造Type对象的各种方式
阅读量:6787 次
发布时间:2019-06-26

本文共 811 字,大约阅读时间需要 2 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            string listTypeName = "System.Collections.Generic.List`1";            Type defByName = Type.GetType(listTypeName);            Type closedByName = Type.GetType(listTypeName + "[System.String]");            Type closedByMethod = defByName.MakeGenericType(typeof(string));            Type closeByTypeof = typeof(List
); Type defByTypeof = typeof(List<>); Type defByMethod = closedByName.GetGenericTypeDefinition(); Console.WriteLine(closeByTypeof); Console.ReadKey(); } }}

 

转载于:https://www.cnblogs.com/liuslayer/p/6957337.html

你可能感兴趣的文章
linux批量解压压缩包
查看>>
windows server 2008 管理员密码忘记的怎么重新设置
查看>>
win7无法访问XP发过来的文件夹,提示“您无权访问该文件夹”解决方法
查看>>
Batch of create users
查看>>
[raspberry pi3] 安装aarch64 opensuse
查看>>
我的友情链接
查看>>
outlet,targe,action 插座变量-动作-目标 解读
查看>>
我的友情链接
查看>>
C++实现迷宫问题
查看>>
关于dwr消除服务器端出错时弹出alter的解决方案
查看>>
模拟海量Open***/IPSec终端进行***隧道容量测试
查看>>
程序员的核心竞争力
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
C# DataTable转List<T>--利用反射
查看>>
linux内核函数do_div与undefined reference to `__udivdi3'解决方法
查看>>
editplus 查找替换技巧
查看>>
hadoop完全分布式安装配置
查看>>
蓝绿部署
查看>>
nfs网络文件系统
查看>>