ImmutableSortedDictionary<TKey,TValue>.Builder.TryGetKey 方法

定义

确定此字典是否包含指定的键。

public:
 bool TryGetKey(TKey equalKey, [Runtime::InteropServices::Out] TKey % actualKey);
public bool TryGetKey (TKey equalKey, out TKey actualKey);
member this.TryGetKey : 'Key * 'Key -> bool
Public Function TryGetKey (equalKey As TKey, ByRef actualKey As TKey) As Boolean

参数

equalKey
TKey

要搜索的键。

actualKey
TKey

如果找到匹配项,则位于字典中;如果未找到匹配项, equalkey 则为 。

返回

如果找到了 equalKey 的匹配项,则为 true;否则为 false

注解

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

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

  • 你想要查找对象的规范值

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

适用于