Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

23 lines
787 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Indicates that a class can be serialized. This class cannot be inherited.</summary>
// Token: 0x0200013C RID: 316
[Token(Token = "0x200013C")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Delegate)]
[ComVisible(true)]
public sealed class SerializableAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.SerializableAttribute" /> class.</summary>
// Token: 0x06000BBF RID: 3007 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000BBF")]
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
public SerializableAttribute()
{
}
}
}