C#中怎样获取ListT的类型?
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/06 12:42:57
C#中怎样获取ListT的类型?
如题,
List dogs=new List();
List cats=new List();
dogs和cats中都没有添加item,如何获取dogs这个List中的类型是Dog呢?
如题,
List dogs=new List();
List cats=new List();
dogs和cats中都没有添加item,如何获取dogs这个List中的类型是Dog呢?
List dogs = new List();
Type type = dogs.GetType();
if (type.IsGenericType)
{
Type[] genericArgTypes = type.GetGenericArguments();
if (genericArgTypes[0] == typeof(Dog))
{
//你想要判断的是这个吗?
}
}
Type type = dogs.GetType();
if (type.IsGenericType)
{
Type[] genericArgTypes = type.GetGenericArguments();
if (genericArgTypes[0] == typeof(Dog))
{
//你想要判断的是这个吗?
}
}
C#中 dictionary怎样由value值获取对应的key值?
怎样获取当前时间只获取小时分钟秒C#
c#中combobox.item()读到的是什么类型的数据
问:海洋中哺乳动物是怎样获取淡水的?
请问C#中我在一个panel控件中添加了ABCD四个按钮,后台代码怎么获取这个panel的值,panel.items.
c#中接口不能声明类型是啥意思?
C# 语言中,在if 分支结构中,条件表达式的值必须是什么类型的数据?
c#中this的作用
C#中Substring的用法
C# 中return 的用法.
C#中怎样统计数组中一个一维数组中每个元素出现的次数?
c#如何快速的根据枚举中的对象的名字获取枚举对象?