Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

28 lines
1.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>Indicates the physical position of fields within the unmanaged representation of a class or structure.</summary>
// Token: 0x02000578 RID: 1400
[Token(Token = "0x2000578")]
[AttributeUsage(AttributeTargets.Field)]
[ComVisible(true)]
public sealed class FieldOffsetAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.FieldOffsetAttribute" /> class with the offset in the structure to the beginning of the field.</summary>
/// <param name="offset">The offset in bytes from the beginning of the structure to the beginning of the field.</param>
// 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;
}
}