vote up 1 vote down star

In C#, what's the syntax for declaring an indexer as part of an interface? Is it still this[ ]? Something feels odd about using the this keyword in an interface.

flag

3 Answers

vote up 10 vote down check
public interface IYourList<T>
    {
        T this[int index] { get; set; }
    }
link|flag
vote up 2 vote down

It is - it's pretty odd syntax at other times if you ask me! But it works. You have to declare the get; and/or set; parts of it with no definition, just a semi-colon, exactly like ordinary properties in an interface.

link|flag
vote up 2 vote down

I know what you mean but, yes, this is correct. Here are the docs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.