ConcurrentHashSetTTryGetValue - метод
Searches the
ConcurrentHashSetT for a given value and returns the equal value it finds, if any.
Пространство имён: Tessa.Platform.CollectionsСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public bool TryGetValue(
T equalValue,
out T actualValue
)
Public Function TryGetValue (
equalValue As T,
<OutAttribute> ByRef actualValue As T
) As Boolean
public:
bool TryGetValue(
T equalValue,
[OutAttribute] T% actualValue
)
member TryGetValue :
equalValue : 'T *
actualValue : 'T byref -> bool
- equalValue T
- The value to search for.
- actualValue T
- The value from the set that the search found, or the default value of T when the search yielded no match.
BooleanA value indicating whether the search was successful.
This can be useful when you want to reuse a previously stored reference instead of
a newly constructed one (so that more sharing of references can occur) or to look up
a value that has more complete data than the value you currently have, although their
comparer functions indicate they are equal.