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

33 lines
959 B
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.Serialization
{
/// <summary>Specifies that the field is an enumeration member and should be serialized.</summary>
// Token: 0x02000004 RID: 4
[Token(Token = "0x2000004")]
[AttributeUsage(AttributeTargets.Field)]
public sealed class EnumMemberAttribute : Attribute
{
/// <summary>Gets or sets the value associated with the enumeration member the attribute is applied to.</summary>
/// <returns>The value associated with the enumeration member.</returns>
// Token: 0x17000006 RID: 6
// (get) Token: 0x06000006 RID: 6 RVA: 0x00002066 File Offset: 0x00000266
[Token(Token = "0x17000006")]
public string Value
{
[Token(Token = "0x6000006")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
// Token: 0x04000006 RID: 6
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000006")]
private string value;
}
}