我是靠谱客的博主 直率鞋垫,最近开发中收集的这篇文章主要介绍泛型的 typeof,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

 

        static void Main(string[] args)
        {
            TestTypeOf<string>();
            Console.ReadKey();
        }

        static void TestTypeOf<T>()
        {
            Console.WriteLine(typeof(List<T>).IsGenericType);//True
            Console.WriteLine(typeof(List<T>).IsGenericTypeDefinition);//False
            Console.WriteLine(typeof(List<>).IsGenericTypeDefinition);//True

            Console.WriteLine("************************************************");

            //根据一个已构造的类型,获取它的泛型类型定义
            Console.WriteLine((typeof(List<T>).GetGenericTypeDefinition()));//System.Collection.Generic.List`1[T]
            //Console.WriteLine((typeof(T).GetGenericTypeDefinition()));//会抛出异常,因为 typeof(T) 不是一个泛型类型

            //根据一个定义的泛型类型,返回一个已构造的类型
            Console.WriteLine((typeof(List<>).MakeGenericType(typeof(T))));//System.Collection.Generic.List`1[System.String]

            Console.WriteLine("************************************************");

            Console.WriteLine(typeof(T));//System.String
            Console.WriteLine(typeof(List<>));//等价于        typeof(List<T>).GetGenericTypeDefinition()
            Console.WriteLine(typeof(Dictionary<,>));//System.Collection.Generic.Dictionary`2[TKey,TValue]
            Console.WriteLine(typeof(List<T>));//等价于       typeof(List<>).MakeGenericType(typeof(T))
            Console.WriteLine(typeof(Dictionary<string, T>));//System.Collection.Generic.Dictionary`2[System.String,System.String]
            Console.WriteLine(typeof(List<long>));//System.Collection.Generic.List`1[System.Int64]
            Console.WriteLine(typeof(Dictionary<long, Guid>));//System.Collection.Generic.Dictionary`2[System.Int64,System.Guid]
        }

 

转载于:https://www.cnblogs.com/refuge/p/8612305.html

最后

以上就是直率鞋垫为你收集整理的泛型的 typeof的全部内容,希望文章能够帮你解决泛型的 typeof所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部