Indexer (programming): Difference between revisions

Content deleted Content added
No edit summary
m Implementation: spelling
Line 9:
 
== Implementation ==
Indexers are implemented through the get and set [[Mutator method|accessor]]s for the {{C_sharp|operator[]}}. They are similar to [[Property (programming)|properties]], but differ from them in not being [[Static method|static]]. The get and set accessors are called as methods using the parameter list of the indexer declaration, but the set accessor still has the impliciteimplicit {{C_sharp|value}} parameter.
 
== Example ==