本文介绍了的PropertyInfo:是属性的索引?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下的code:
PropertyInfo[] originalProperties = myType.GetProperties();
我想从 originalProperties
排除所有的索引(myVar的[钥匙]出现一个名为产品的属性)。
I want to exclude from originalProperties
all the indexers (myVar["key"] appears as property named "Item").
什么是正确的方法是什么?
What is the proper way ?
排除所有的属性,其中 propInfo.Name ==项目
不是一个选项。
Exclude all properties where propInfo.Name == "Item"
is not an option.
推荐答案
呼叫<$c$c>PropertyInfo.GetIndexParameters$c$c> - 如果返回的数组是空的,它不是一个索引
Call PropertyInfo.GetIndexParameters
- if the returned array is empty, it's not an indexer.
这篇关于的PropertyInfo:是属性的索引?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!