System.ValueTuple<T1>
public struct ValueTuple<T1> : IEquatable<ValueTuple<T1>>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable<ValueTuple<T1>>, ITupleInternal
Represents a 1-tuple, or singleton, as a value type.
namespace System
{
public struct ValueTuple<T1> : IEquatable<ValueTuple<T1>>, IStructuralEquatable, IStructuralComparable, IComparable, IComparable<ValueTuple<T1>>, System.ITupleInternal
{
public T1 Item1;
public ValueTuple(T1 item1);
public bool Equals(ValueTuple<T1> other);
public int CompareTo(ValueTuple<T1> other);
}
}