Let\'s say I have a class:
class Foo { public string Bar { get { ... } } public string this[int index] { get { ... } } }
I
Thanks to Cameron's suggestion, I've found the correct syntax, which is:
Item[]
Which updates everything (all index values) bound to that indexed property.