TryGetValue method
Implementation
bool TryGetValue(TKey key, OutParam<Object> valueOutParam) {
if (this._items.containsKey(key)) {
valueOutParam.param = this._items[key];
return true;
} else {
valueOutParam.param = null;
return false;
}
}