Let\'s say I have a class:
class Foo { public string Bar { get { ... } } public string this[int index] { get { ... } } }
I
Avoiding strings in your code, you can use the constant Binding.IndexerName, which is actually "Item[]"
Binding.IndexerName
"Item[]"
new PropertyChangedEventArgs(Binding.IndexerName)