using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// Indicates that the use of a value tuple on a member is meant to be treated as a tuple with element names.
// Token: 0x02000532 RID: 1330
[Token(Token = "0x2000532")]
[CLSCompliant(false)]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public sealed class TupleElementNamesAttribute : Attribute
{
/// Initializes a new instance of the class.
/// A string array that specifies, in a pre-order depth-first traversal of a type's construction, which value tuple occurrences are meant to carry element names.
// Token: 0x060029FA RID: 10746 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029FA")]
[Address(RVA = "0x29608F0", Offset = "0x295F6F0", VA = "0x1829608F0")]
public TupleElementNamesAttribute(string[] transformNames)
{
}
// Token: 0x04001867 RID: 6247
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001867")]
private readonly string[] _transformNames;
}
}