AATreeTKey, TValueAdd Method |
Tries to add specified key and value to the AATree.
If the key is already present then this method returns without adding.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Add(
TKey key,
TValue value
)
Public Function Add (
key As TKey,
value As TValue
) As Boolean
public:
bool Add(
TKey key,
TValue value
)
member Add :
key : 'TKey *
value : 'TValue -> bool
Parameters
- key
- Type: TKey
Key to add. - value
- Type: TValue
Value to add.
Return Value
Type:
BooleanReturns true if add is successful, else returns false.
See Also