C# Indexer in an interface
interface with indexer
An interface can specify an indexer. An indexer declared in an interface has this general form:
// interface indexer//w ww . j av a2 s.co m
element-type this[int index] {
get;
set;
}
Next chapter...
What you will learn in the next chapter: