- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题,我想确定一个对象是否属于 KeyValuePair<,>
类型
当我在 if 中进行比较时:
else if (item.GetType() == typeof(KeyValuePair<,>))
{
var key = item.GetType().GetProperty("Key");
var value = item.GetType().GetProperty("Value");
var keyObj = key.GetValue(item, null);
var valueObj = value.GetValue(item, null);
...
}
这是错误的 IsGenericTypeDefinition
对他们来说是不同的。
有人可以向我解释为什么会发生这种情况以及如何以正确的方式解决这个问题(我的意思是不比较名称或其他琐碎的字段。)
提前致谢!
最佳答案
item.GetType() == typeof(KeyValuePair<,>)
上面的方法永远行不通:不可能生成 KeyValuePair<,>
类型的对象.
原因是typeof(KeyValuePair<,>)
不代表一个类型。相反,它是一个通用类型定义 - System.Type
对象用于检查其他泛型类型的结构,但它们本身并不表示有效的 .NET 类型。
如果 item
比如说,一个 KeyValuePair<string,int>
, 然后 item.GetGenericTypeDefintion() == typeof(KeyValuePair<,>)
以下是修改代码的方法:
...
else if (item.IsGenericType() && item.GetGenericTypeDefintion() == typeof(KeyValuePair<,>)) {
...
}
关于c# - 如何比较 IsGenericType 定义为 def 的相同类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14071379/
谁能解释一下?根据文档 IsGenericType indicatesing whether the current Type represents a type parameter in the d
在下面的代码中我们有两个类,Parent 类使用泛型: abstract class Parent { public T Put(T id, char value) {
我有生成 char 对象集合的函数: public static IEnumerable generic_foo() { return "1231"; } public static IEnu
Type.IsGenericType 和 Type.IsGenericTypeDefinition 有什么区别?有趣的是,MSDN 的 IsGenericTypeDefinition 链接已损坏。 更
我有一个问题,我想确定一个对象是否属于 KeyValuePair 类型 当我在 if 中进行比较时: else if (item.GetType() == typeof(KeyValuePair))
我在 .Net 4.6.2 中有此代码,现在尝试转换为 .Net 核心,但出现错误 Error CS1061 'Type' does not contain a definition for 'IsG
我是一名优秀的程序员,十分优秀!