Search code examples
c#.netreflectionpropertyinfo

PropertyInfo : is the property an indexer?


I have the following code :

PropertyInfo[] originalProperties = myType.GetProperties();

I want to exclude from originalProperties all the indexers (myVar["key"] appears as property named "Item").

What is the proper way ?

Exclude all properties where propInfo.Name == "Item" is not an option.


Solution

  • Call PropertyInfo.GetIndexParameters - if the returned array is empty, it's not an indexer.