operator [] method
dynamic
operator [](
- TKey key
Implementation
operator [](TKey key) {
OutParam<Object> valueOutParam = OutParam();
if (this.TryGetValue(key, valueOutParam)) {
return valueOutParam.param;
} else {
return null;
}
}