Поделиться через


CollectionsMarshal.GetValueRefOrNullRef Метод

Определение

Перегрузки

GetValueRefOrNullRef<TKey,TValue,TAlternateKey>(Dictionary<TKey,TValue>.AlternateLookup<TAlternateKey>, TAlternateKey)

Возвращает ссылку на TValue в Dictionary<TKey,TValue> или значение null, если оно не существует в dictionary.

GetValueRefOrNullRef<TKey,TValue>(Dictionary<TKey,TValue>, TKey)

Возвращает ссылку на TValue в Dictionary<TKey,TValue> или ссылку null, если она не существует в dictionary.

GetValueRefOrNullRef<TKey,TValue,TAlternateKey>(Dictionary<TKey,TValue>.AlternateLookup<TAlternateKey>, TAlternateKey)

Возвращает ссылку на TValue в Dictionary<TKey,TValue> или значение null, если оно не существует в dictionary.

public:
generic <typename TKey, typename TValue, typename TAlternateKey>
 static TValue % GetValueRefOrNullRef(System::Collections::Generic::Dictionary<TKey, TValue>::AlternateLookup<TAlternateKey> dictionary, TAlternateKey key);
public static ref TValue GetValueRefOrNullRef<TKey,TValue,TAlternateKey> (System.Collections.Generic.Dictionary<TKey,TValue>.AlternateLookup<TAlternateKey> dictionary, TAlternateKey key);
static member GetValueRefOrNullRef : System.Collections.Generic.Dictionary<'Key, 'Value>.AlternateLookup<'AlternateKey> * 'AlternateKey -> 'Value
Public Shared Function GetValueRefOrNullRef(Of TKey, TValue, TAlternateKey) (dictionary As Dictionary(Of TKey, TValue).AlternateLookup(Of TAlternateKey), key As TAlternateKey) As TValue

Параметры типа

TKey

Тип ключей в словаре.

TValue

Тип значений в словаре.

TAlternateKey

Тип альтернативного ключа для подстановок в словаре.

Параметры

dictionary
Dictionary<TKey,TValue>.AlternateLookup<TAlternateKey>

Словарь, из который необходимо получить ссылку на TValue.

key
TAlternateKey

Ключ, используемый для поиска.

Возвращаемое значение

TValue

Ссылка на TValue в Dictionary<TKey,TValue> или ссылке null, если она не существует в dictionary..

Комментарии

Элементы не следует добавлять или удалять из Dictionary<TKey,TValue>, пока используется ссылка TValue.

Ссылка null может быть обнаружена путем вызова IsNullRef<T>(T).

Применяется к

GetValueRefOrNullRef<TKey,TValue>(Dictionary<TKey,TValue>, TKey)

Исходный код:
CollectionsMarshal.cs
Исходный код:
CollectionsMarshal.cs
Исходный код:
CollectionsMarshal.cs

Возвращает ссылку на TValue в Dictionary<TKey,TValue> или ссылку null, если она не существует в dictionary.

public:
generic <typename TKey, typename TValue>
 static TValue % GetValueRefOrNullRef(System::Collections::Generic::Dictionary<TKey, TValue> ^ dictionary, TKey key);
public static ref TValue GetValueRefOrNullRef<TKey,TValue> (System.Collections.Generic.Dictionary<TKey,TValue> dictionary, TKey key);
static member GetValueRefOrNullRef : System.Collections.Generic.Dictionary<'Key, 'Value> * 'Key -> 'Value
Public Shared Function GetValueRefOrNullRef(Of TKey, TValue) (dictionary As Dictionary(Of TKey, TValue), key As TKey) As TValue

Параметры типа

TKey

Тип ключа.

TValue

Тип значения.

Параметры

dictionary
Dictionary<TKey,TValue>

Словарь, из который необходимо получить ссылку на TValue.

key
TKey

Ключ, используемый для поиска.

Возвращаемое значение

TValue

Ссылка на TValue в Dictionary<TKey,TValue> или ссылке null, если она не существует в dictionary..

Комментарии

Элементы не следует добавлять или удалять из Dictionary<TKey,TValue>, пока используется ссылка TValue.

Ссылка null может быть обнаружена путем вызова System.Runtime.CompilerServices.Unsafe.IsNullRef<T>(T).

Применяется к