CompilationRelaxations Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies parameters that control the strictness of the code generated by the common language runtime's just-in-time (JIT) compiler.
This enumeration supports a bitwise combination of its member values.
public enum class CompilationRelaxations
[System.Flags]
public enum CompilationRelaxations
[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum CompilationRelaxations
[<System.Flags>]
type CompilationRelaxations =
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CompilationRelaxations =
Public Enum CompilationRelaxations
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
NoStringInterning | 8 | Marks an assembly as not requiring string-literal interning. In an application domain, the common language runtime creates one string object for each unique string literal, rather than making multiple copies. This behavior, called string interning, internally requires building auxiliary tables that consume memory resources. |
Remarks
Use the CompilationRelaxations enumeration with the CompilationRelaxationsAttribute attribute.