Searches for the specified value in the AATree.
If found returns the value in actualValue out param, else this param contains DefaultValue.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool TrySearch(
T value,
out T actualValue
)
Public Function TrySearch (
value As T,
<OutAttribute> ByRef actualValue As T
) As Boolean
public:
bool TrySearch(
T value,
[OutAttribute] T% actualValue
)
member TrySearch :
value : 'T *
actualValue : 'T byref -> bool
Parameters
- value
- Type: T
Value to search. - actualValue
- Type: T
Out parameter.
Return Value
Type:
BooleanReturns true if the value is found, else returns false.
See Also