Summary
Deconstructs the specified KVP.
- Assembly
- Rocket
.Surgery .Extensions .dll - Namespace
- System
.Collections .Generic - Containing Type
- Deconstructor
Extensions
Syntax
public static void Deconstruct<TK, TV>(this KeyValuePair<TK, TV> kvp, out TK key, out TV value)
Attributes
| Type | Description |
|---|---|
| Nullable |
Type Parameters
| Name | Description |
|---|---|
| TK | |
| TV |
Parameters
| Name | Type | Description |
|---|---|---|
| kvp | KeyValuePair |
The KVP. |
| key | TK | The key. |
| value | TV | The value. |
Return Value
| Type | Description |
|---|---|
| void |
