Early Preview
This is currently very much a preview. Please feel free to try things out,
but don't be upset if anything is not yet working. Feedback is welcome over on our
GitHub Dicussions page.
enum System.Runtime.CompilerServices.MethodImplOptions
Assembly: System.Runtime
Specifies constants that define the details of how a method is implemented.
Values
Unmanaged
The method is implemented in unmanaged code.
NoInlining
The method cannot be inlined. Inlining is an optimization by which a method call is replaced with the method body.
ForwardRef
The method is declared, but its implementation is provided elsewhere.
Synchronized
The method can be executed by only one thread at a time. Static methods lock on the type, whereas instance methods lock on the instance. Only one thread can execute in any of the instance functions, and only one thread can execute in any of a class's static functions.
NoOptimization
The method is not optimized by the just-in-time (JIT) compiler or by native code generation (see Ngen.exe) when debugging possible code generation problems.
PreserveSig
The method signature is exported exactly as declared.
AggressiveInlining
<para>The method should be inlined if possible.</para> <para>Unnecessary use of this attribute can reduce performance. The attribute might cause implementation limits to be encountered that will result in slower generated code. Always measure performance to ensure it's helpful to apply this attribute.</para>
AggressiveOptimization
<para>The method contains code that should always be optimized for performance.</para> <para>It's rarely appropriate to use this attribute. Methods that apply this attribute bypass the first tier of tiered compilation and therefore don't benefit from optimizations that rely on tiered compilation. Those optimizations include dynamic PGO and optimizations based on initialized classes. Use of this attribute might also increase memory use. Always measure performance to ensure it's helpful to apply this attribute.</para>
InternalCall
The call is internal, that is, it calls a method that's implemented within the common language runtime.
Async