Top "Indexed-properties" questions

Properties of a Java Bean that could be accessed via index.

Easy creation of properties that support indexing in C#

In C# I find indexed properties extremely useful. For example: var myObj = new MyClass(); myObj[42] = "hello"; Console.WriteLine(myObj[42]); However …

c# properties indexed-properties
Why C# doesn't implement indexed properties?

I know, I know... Eric Lippert's answer to this kind of question is usually something like "because it wasn't worth …

c# language-features indexed-properties
Validate elements of a String array with Java Bean Validation

I have a simple class that has one of its properties as a String array. As per this document, using @…

java bean-validation indexed-properties