KeyValuePair<TKey,TValue>.Deconstruct(TKey, TValue) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
解構目前的 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> 的值。