using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// Indicates the physical position of fields within the unmanaged representation of a class or structure.
// Token: 0x02000578 RID: 1400
[Token(Token = "0x2000578")]
[AttributeUsage(AttributeTargets.Field)]
[ComVisible(true)]
public sealed class FieldOffsetAttribute : Attribute
{
/// Initializes a new instance of the class with the offset in the structure to the beginning of the field.
/// The offset in bytes from the beginning of the structure to the beginning of the field.
// Token: 0x06002AA8 RID: 10920 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002AA8")]
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
public FieldOffsetAttribute(int offset)
{
}
// Token: 0x04001922 RID: 6434
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4001922")]
internal int _val;
}
}