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: 0x0200011D RID: 285
|
|
[Token(Token = "0x200011D")]
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
[ComVisible(true)]
|
|
public sealed class NonSerializedAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NonSerializedAttribute" /> class.</summary>
|
|
// Token: 0x06000A6D RID: 2669 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A6D")]
|
|
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
|
|
public NonSerializedAttribute()
|
|
{
|
|
}
|
|
}
|
|
}
|