As with other members, .NET Reflector does support indexers. However, if you're unfamiliar with the notation this may not be immediately obvious, because indexers are treated as properties of the form Item[<index typename>] : <return typename>. Thus, they appear along with the other properties in the treeview, rather than in a separate group, like methods, or member variables. They are grouped together though, as the following example, taken from the System.Data.SqlClient.SqlParameterCollection class, shows:
.NET Reflector can also successfully reflect over and decompile generic indexers, such as this example in System.Collections.Generic.Dictionary<TKey, TValue>:
(Click on the image for a larger view.)