1.  
  2. public interface ISomeInterface
  3. {
  4. //...
  5.  
  6. // Indexer declaration:
  7. string this[int index]
  8. {
  9. get;
  10. set;
  11. }
  12. }
  13.