Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/CompilerServices/CompilationRelaxations.cs
T
2026-04-10 22:50:51 +02:00

21 lines
604 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// <summary>Specifies parameters that control the strictness of the code generated by the common language runtime's just-in-time (JIT) compiler.</summary>
// Token: 0x02000551 RID: 1361
[Token(Token = "0x2000551")]
[Flags]
[ComVisible(true)]
[Serializable]
public enum CompilationRelaxations
{
/// <summary>Marks an assembly as not requiring string-literal interning.</summary>
// Token: 0x04001896 RID: 6294
[Token(Token = "0x4001896")]
NoStringInterning = 8
}
}