KeyValuePair<TKey,TValue>.Deconstruct(TKey, TValue) 메서드

정의

현재 KeyValuePair<TKey,TValue>를 분해합니다.

public:
 void Deconstruct([Runtime::InteropServices::Out] TKey % key, [Runtime::InteropServices::Out] TValue % value);
public void Deconstruct (out TKey key, out TValue value);
member this.Deconstruct : 'Key * 'Value -> unit
Public Sub Deconstruct (ByRef key As TKey, ByRef value As TValue)

매개 변수

key
TKey

현재 KeyValuePair<TKey,TValue>의 키입니다.

value
TValue

현재 KeyValuePair<TKey,TValue>의 값입니다.

적용 대상