FrozenDictionary<TKey,TValue>.GetValueRefOrNullRef(TKey) 方法

定义

获取对字典中 的 TValue 引用; null 如果字典中不存在键,则获取引用。

public:
 TValue& ^ GetValueRefOrNullRef(TKey key);
public ref readonly TValue GetValueRefOrNullRef (TKey key);
member this.GetValueRefOrNullRef : 'Key -> 'Value
Public Function GetValueRefOrNullRef (key As TKey) As TValue

参数

key
TKey

用于查找的键。

返回

TValue

对字典中的 的引用 TValue ; null 如果字典中不存在键,则为引用。

注解

null可以通过调用 IsNullRef<T>(T)来检测引用。

适用于