If I have
List<MyClass> MyObj;
I can access specific member like this:
MyObj[0] = new MyClass();
But some time ago, somewhere on msdn I have read, that it is possible to access my objects like that:
MyObj["mykey"] = new MyClass();
Is that possible, or am I making things up here?