This enumeration is used with the System.Runtime.CompilerServices.MethodImplAttributeattribute.
You can specify multiple System.Runtime.CompilerServices.MethodImplOptions values by using the bitwise OR operator.
Locking on the instance or on the type, as with the MethodImplOptions.Synchronized flag, is not recommended for public types, because code other than your own can take locks on public types and instances. This might cause deadlocks or other synchronization problems.
Member Name | Description |
---|---|
AggressiveInlining |
The method should be inlined if possible. |
ForwardRef |
The method is declared, but its implementation is provided elsewhere. |
InternalCall |
The call is internal, that is, it calls a method that is implemented within the common language runtime. |
NoInlining |
The method cannot be inlined. Inlining is an optimization by which a method call is replaced with the method body. |
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. |
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. |
Unmanaged |
The method is implemented in unmanaged code. |