c# – 如何获得一个字典类型的TKey和TValue的类型

前端之家收集整理的这篇文章主要介绍了c# – 如何获得一个字典类型的TKey和TValue的类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要获得TKey和TValue的类型,给出一个字典< TKey,TValue>类型.

例如.如果类型为Dictionary< Int32,String>我想知道如何得到@H_403_3@keyType = typeof(Int32)和@H_403_3@valueType = typeof(String)

解决方法

我认为这可能是你正在寻找的:
Dictionary<int,string> dictionary = new Dictionary<int,string>();
Type[] arguments = dictionary.GetType().GetGenericArguments();
Type keyType = arguments[0];
Type valueType = arguments[1];

参考:Type.GetGenericArguments

原文链接:/csharp/93339.html

猜你在找的C#相关文章