CollectionExtensions.GetValueOrDefault 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetValueOrDefault<TKey,TValue>(IReadOnlyDictionary<TKey,TValue>, TKey) |
|
GetValueOrDefault<TKey,TValue>(IReadOnlyDictionary<TKey,TValue>, TKey, TValue) |
|
GetValueOrDefault<TKey,TValue>(IReadOnlyDictionary<TKey,TValue>, TKey)
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
dictionary
에서 지정된 key
과(와) 연결된 값을 가져오려고 시도합니다.
public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
static TValue GetValueOrDefault(System::Collections::Generic::IReadOnlyDictionary<TKey, TValue> ^ dictionary, TKey key);
public static TValue? GetValueOrDefault<TKey,TValue> (this System.Collections.Generic.IReadOnlyDictionary<TKey,TValue> dictionary, TKey key);
public static TValue GetValueOrDefault<TKey,TValue> (this System.Collections.Generic.IReadOnlyDictionary<TKey,TValue> dictionary, TKey key);
static member GetValueOrDefault : System.Collections.Generic.IReadOnlyDictionary<'Key, 'Value> * 'Key -> 'Value
<Extension()>
Public Function GetValueOrDefault(Of TKey, TValue) (dictionary As IReadOnlyDictionary(Of TKey, TValue), key As TKey) As TValue
형식 매개 변수
- TKey
사전에 있는 키의 형식입니다.
- TValue
사전에 있는 값의 형식입니다.
매개 변수
- dictionary
- IReadOnlyDictionary<TKey,TValue>
TKey
형식의 키와 TValue
형식의 값을 사용하는 사전입니다.
- key
- TKey
가져올 값의 키입니다.
반환
TValue
인스턴스입니다. 메서드가 성공적으로 실행되면 반환되는 개체는 지정된 key
과(와) 연결된 값입니다. 메서드가 실패하면 TValue
에 대한 default
값을 반환합니다.
예외
dictionary
은 null
입니다.
적용 대상
GetValueOrDefault<TKey,TValue>(IReadOnlyDictionary<TKey,TValue>, TKey, TValue)
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
- Source:
- CollectionExtensions.cs
dictionary
에서 지정된 key
과(와) 연결된 값을 가져오려고 시도합니다.
public:
generic <typename TKey, typename TValue>
[System::Runtime::CompilerServices::Extension]
static TValue GetValueOrDefault(System::Collections::Generic::IReadOnlyDictionary<TKey, TValue> ^ dictionary, TKey key, TValue defaultValue);
public static TValue GetValueOrDefault<TKey,TValue> (this System.Collections.Generic.IReadOnlyDictionary<TKey,TValue> dictionary, TKey key, TValue defaultValue);
static member GetValueOrDefault : System.Collections.Generic.IReadOnlyDictionary<'Key, 'Value> * 'Key * 'Value -> 'Value
<Extension()>
Public Function GetValueOrDefault(Of TKey, TValue) (dictionary As IReadOnlyDictionary(Of TKey, TValue), key As TKey, defaultValue As TValue) As TValue
형식 매개 변수
- TKey
사전에 있는 키의 형식입니다.
- TValue
사전에 있는 값의 형식입니다.
매개 변수
- dictionary
- IReadOnlyDictionary<TKey,TValue>
TKey
형식의 키와 TValue
형식의 값을 사용하는 사전입니다.
- key
- TKey
가져올 값의 키입니다.
- defaultValue
- TValue
dictionary
에서 지정된 key
과(와) 연결된 값을 찾을 수 없는 경우 반환할 기본값입니다.
반환
TValue
인스턴스입니다. 메서드가 성공적으로 실행되면 반환되는 개체는 지정된 key
과(와) 연결된 값입니다. 메서드가 실패하면 defaultValue
을(를) 반환합니다.
예외
dictionary
은 null
입니다.
적용 대상
.NET