Skip to main content

SplitResult<T> Struct

Definition

Assembly:Avalonia.Base
Package:Avalonia
public struct SplitResult<T>

Inheritance: ValueType -> SplitResult<T>

Constructors

NameDescription
SplitResult<T>No summary available.

SplitResult<T> Constructor

public SplitResult<T>(T first, T second)

Parameters

first T

second T

Methods

NameDescription
DeconstructNo summary available.

Deconstruct Method

public void Deconstruct(T& first, T& second)

Parameters

first T&

second T&

Properties

NameDescription
FirstGets the first part.
SecondGets the second part.

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.