23 lines
743 B
C#
23 lines
743 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>Indicates that a field of a serializable class should not be serialized. This class cannot be inherited.</summary>
|
|
// Token: 0x02000124 RID: 292
|
|
[Token(Token = "0x2000124")]
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public sealed class NonSerializedAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NonSerializedAttribute" /> class.</summary>
|
|
// Token: 0x06000A9F RID: 2719 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A9F")]
|
|
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
|
|
public NonSerializedAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|