SplitResult<T> Struct
Definition
public struct SplitResult<T>
Constructors
| Name | Description |
|---|---|
| SplitResult<T> | No summary available. |
SplitResult<T> Constructor
public SplitResult<T>(T first, T second)
Parameters
first T
second T
Methods
| Name | Description |
|---|---|
| Deconstruct | No summary available. |
Deconstruct Method
public void Deconstruct(T& first, T& second)
Parameters
first T&
second T&
Properties
First Property
Gets the first part.
public T First { get; set; }
Value
The first part.
Second Property
Gets the second part.
public T Second { get; set; }
Value
The second part.