Files
Dec2017-Script-Dump/mscorlib/System/Runtime/CompilerServices/CompilationRelaxations.cs
T
2026-06-04 11:42:34 +02:00

18 lines
520 B
C#

using System;
using System.Runtime.InteropServices;
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: 0x02000292 RID: 658
[Flags]
[ComVisible(true)]
[Serializable]
public enum CompilationRelaxations
{
/// <summary>Marks an assembly as not requiring string-literal interning.</summary>
// Token: 0x04000BC3 RID: 3011
NoStringInterning = 8
}
}