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

System.ValueTuple<T1, T2, T3, T4, T5>

public struct ValueTuple<T1, T2, T3, T4, T5> : IEquatable<ValueTuple<T1, T2, T3, T4, T5>>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable<ValueTuple<T1, T2, T3, T4, T5>>, ITupleInternal
Represents a 5-tuple, or quintuple, as a value type.
public T1 Item1

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

public T2 Item2

The current ValueTuple<T, U, V, W, X> instance's second component.

public T3 Item3

The current ValueTuple<T, U, V, W, X> instance's third component.

public T4 Item4

The current ValueTuple<T, U, V, W, X> instance's fourth component.

public T5 Item5

The current ValueTuple<T, U, V, W, X> instance's fifth component.

public ValueTuple(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5)

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

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

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