ImmutableSortedDictionary<TKey,TValue>.Builder.Add 메서드

정의

오버로드

Add(KeyValuePair<TKey,TValue>)

변경할 수 없는 정렬된 사전에 지정된 항목을 추가합니다.

Add(TKey, TValue)

지정한 키와 값을 가진 요소를 변경할 수 없는 정렬된 사전에 추가합니다.

Add(KeyValuePair<TKey,TValue>)

Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs

변경할 수 없는 정렬된 사전에 지정된 항목을 추가합니다.

public:
 virtual void Add(System::Collections::Generic::KeyValuePair<TKey, TValue> item);
public void Add (System.Collections.Generic.KeyValuePair<TKey,TValue> item);
abstract member Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> unit
Public Sub Add (item As KeyValuePair(Of TKey, TValue))

매개 변수

item
KeyValuePair<TKey,TValue>

사전에 추가할 개체입니다.

구현

적용 대상

Add(TKey, TValue)

Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs
Source:
ImmutableSortedDictionary_2.Builder.cs

지정한 키와 값을 가진 요소를 변경할 수 없는 정렬된 사전에 추가합니다.

public:
 virtual void Add(TKey key, TValue value);
public void Add (TKey key, TValue value);
abstract member Add : 'Key * 'Value -> unit
override this.Add : 'Key * 'Value -> unit
Public Sub Add (key As TKey, value As TValue)

매개 변수

key
TKey

추가할 요소의 키입니다.

value
TValue

추가할 요소의 값입니다.

구현

적용 대상