IImmutableSet<T>.TryGetValue(T, T) 方法

定义

确定集是否包含指定的值。

public:
 bool TryGetValue(T equalValue, [Runtime::InteropServices::Out] T % actualValue);
public bool TryGetValue (T equalValue, out T actualValue);
abstract member TryGetValue : 'T * 'T -> bool
Public Function TryGetValue (equalValue As T, ByRef actualValue As T) As Boolean

参数

equalValue
T

要搜索的值。

actualValue
T

如果找到,则为集中的匹配值;如果没有匹配项, equalvalue 则为 。

返回

如果找到了匹配值,则为 true;否则为 false

注解

下面是一些可能有用的方案 TryGetValue

  • 你想要重用以前存储的对象引用,而不是创建新引用。

  • 想要检索有关对象的更完整数据

适用于