Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/CompilerServices/StringFreezingAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

22 lines
796 B
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>Deprecated. Freezes a string literal when creating native images using the Ngen.exe (Native Image Generator). This class cannot be inherited.</summary>
// Token: 0x0200057D RID: 1405
[Token(Token = "0x200057D")]
[AttributeUsage(AttributeTargets.Assembly)]
[Serializable]
public sealed class StringFreezingAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.StringFreezingAttribute" /> class.</summary>
// Token: 0x06002C88 RID: 11400 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C88")]
[Address(RVA = "0x42BA20", Offset = "0x42AA20", VA = "0x18042BA20")]
public StringFreezingAttribute()
{
}
}
}