Static Indexers?
Why are static indexers disallowed in C#? I see no reason why they should not be allowed and furthermore they could be very useful. For example: static class ConfigurationManager { public object this[string name]{ get{ return ConfigurationManager.getProperty(name); } set { ...