Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue>, out TKey, out TValue)

  • Declared in: RT.Util.Ut

Declaration

public static void Deconstruct<TKey, TValue>(
    this KeyValuePair<TKey, TValue> source,
    out TKey key,
    out TValue value
)

Summary

Allows the deconstruction of KeyValuePairs into separate variables.

Generic type parameters

TKeyThis type parameter is not documented.
TValueThis type parameter is not documented.