using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Text; namespace ICSharpCode.Decompiler.TypeSystem { public sealed class TupleType { /// /// Gets the underlying System.ValueType type. /// public ParameterizedType UnderlyingType { get; } public ImmutableArray TupleElements { get; } } }