mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
390 B
17 lines
390 B
using System; |
|
using System.Collections.Generic; |
|
using System.Collections.Immutable; |
|
using System.Text; |
|
|
|
namespace ICSharpCode.Decompiler.TypeSystem |
|
{ |
|
public sealed class TupleType |
|
{ |
|
/// <summary> |
|
/// Gets the underlying <c>System.ValueType</c> type. |
|
/// </summary> |
|
public ParameterizedType UnderlyingType { get; } |
|
|
|
public ImmutableArray<IField> TupleElements { get; } |
|
} |
|
}
|
|
|