ImmutableDictionary.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Create<TKey,TValue>() |
변경할 수 없는 빈 사전을 만듭니다. |
Create<TKey,TValue>(IEqualityComparer<TKey>) |
지정된 키 비교자를 사용하는 변경할 수 없는 빈 사전을 만듭니다. |
Create<TKey,TValue>(IEqualityComparer<TKey>, IEqualityComparer<TValue>) |
지정된 키 및 값 비교자를 사용하는 변경할 수 없는 빈 사전을 만듭니다. |
Create<TKey,TValue>()
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
변경할 수 없는 빈 사전을 만듭니다.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ Create();
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue> Create<TKey,TValue> ();
static member Create : unit -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) () As ImmutableDictionary(Of TKey, TValue)
형식 매개 변수
- TKey
사전에 의해 저장되는 키의 형식입니다.
- TValue
사전에 의해 저장되는 값의 형식입니다.
반환
변경할 수 없는 빈 사전입니다.
적용 대상
Create<TKey,TValue>(IEqualityComparer<TKey>)
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
지정된 키 비교자를 사용하는 변경할 수 없는 빈 사전을 만듭니다.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ Create(System::Collections::Generic::IEqualityComparer<TKey> ^ keyComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey> keyComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey>? keyComparer);
static member Create : System.Collections.Generic.IEqualityComparer<'Key> -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IEqualityComparer(Of TKey)) As ImmutableDictionary(Of TKey, TValue)
형식 매개 변수
- TKey
사전에 의해 저장되는 키의 형식입니다.
- TValue
사전에 의해 저장되는 값의 형식입니다.
매개 변수
- keyComparer
- IEqualityComparer<TKey>
사전의 키와 동일한지 확인하는 데 사용할 구현입니다.
반환
변경할 수 없는 빈 사전입니다.
적용 대상
Create<TKey,TValue>(IEqualityComparer<TKey>, IEqualityComparer<TValue>)
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
- Source:
- ImmutableDictionary.cs
지정된 키 및 값 비교자를 사용하는 변경할 수 없는 빈 사전을 만듭니다.
public:
generic <typename TKey, typename TValue>
static System::Collections::Immutable::ImmutableDictionary<TKey, TValue> ^ Create(System::Collections::Generic::IEqualityComparer<TKey> ^ keyComparer, System::Collections::Generic::IEqualityComparer<TValue> ^ valueComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey> keyComparer, System.Collections.Generic.IEqualityComparer<TValue> valueComparer);
public static System.Collections.Immutable.ImmutableDictionary<TKey,TValue> Create<TKey,TValue> (System.Collections.Generic.IEqualityComparer<TKey>? keyComparer, System.Collections.Generic.IEqualityComparer<TValue>? valueComparer);
static member Create : System.Collections.Generic.IEqualityComparer<'Key> * System.Collections.Generic.IEqualityComparer<'Value> -> System.Collections.Immutable.ImmutableDictionary<'Key, 'Value>
Public Function Create(Of TKey, TValue) (keyComparer As IEqualityComparer(Of TKey), valueComparer As IEqualityComparer(Of TValue)) As ImmutableDictionary(Of TKey, TValue)
형식 매개 변수
- TKey
사전에 의해 저장되는 키의 형식입니다.
- TValue
사전에 의해 저장되는 값의 형식입니다.
매개 변수
- keyComparer
- IEqualityComparer<TKey>
사전의 키와 동일한지 확인하는 데 사용할 구현입니다.
- valueComparer
- IEqualityComparer<TValue>
사전의 값과 동일한지 확인하는 데 사용할 구현입니다.
반환
변경할 수 없는 빈 사전입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET