<PackageReference Include="System.ValueTuple" Version="4.4.0-preview2-25405-01" />

System.ValueTuple<T1, T2>

Represents a 2-tuple, or pair, as a value type.
public T1 Item1

The current ValueTuple<T, U> instance's first component.

public T2 Item2

The current ValueTuple<T, U> instance's first component.

public ValueTuple(T1 item1, T2 item2)

Initializes a new instance of the ValueTuple<T, U> value type.

public int CompareTo(ValueTuple<T1, T2> other)

public bool Equals(ValueTuple<T1, T2> other)