Hybrid Bridge
|
Represents a generic dictionary of instances to be registered on the GlobalPool and their values More...
Public Member Functions | |
InstanceDictionary () | |
Creates a new instance of this class More... | |
InstanceDictionary (IDictionary< object, T > dictionary) | |
Creates a new instance of this class and fills it with the collection of provided pairs More... | |
new void | Clear () |
Clears the dictionary by removing all instance pairs More... | |
new void | Add (object key, T value) |
Adds a new instance and its value to the dictionary More... | |
new bool | Remove (object key) |
Removes an instance from the dictionary More... | |
Represents a generic dictionary of instances to be registered on the GlobalPool and their values
T | The type of the instance values |
Definition at line 11 of file InstanceDictionary.cs.
Creates a new instance of this class
Definition at line 16 of file InstanceDictionary.cs.
HybridBridge.InstancePool.InstanceDictionary< T >.InstanceDictionary | ( | IDictionary< object, T > | dictionary | ) |
Creates a new instance of this class and fills it with the collection of provided pairs
dictionary | The pairs to add to the dictionary |
Definition at line 24 of file InstanceDictionary.cs.
new void HybridBridge.InstancePool.InstanceDictionary< T >.Add | ( | object | key, |
T | value | ||
) |
Adds a new instance and its value to the dictionary
key | The instance |
value | The instance value |
Definition at line 48 of file InstanceDictionary.cs.
new void HybridBridge.InstancePool.InstanceDictionary< T >.Clear | ( | ) |
Clears the dictionary by removing all instance pairs
Definition at line 35 of file InstanceDictionary.cs.
new bool HybridBridge.InstancePool.InstanceDictionary< T >.Remove | ( | object | key | ) |
Removes an instance from the dictionary
key | The instance to remove |
Definition at line 65 of file InstanceDictionary.cs.