Let\'s say I have a class:
class Foo { public string Bar { get { ... } } public string this[int index] { get { ... } } }
I
Don't know for sure if this'll work, but reflector shows that the get and set methods for an indexed property are called get_Item and set_Item. Perhaps you could try Item and see if that works.