Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Defines the details of how a method is implemented.
Namespace: System.Runtime.CompilerServices
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Enumeration MethodImplOptions
[SerializableAttribute]
public enum MethodImplOptions
[SerializableAttribute]
public enum class MethodImplOptions
[<SerializableAttribute>]
type MethodImplOptions
public enum MethodImplOptions
Members
Member name | Description | |
---|---|---|
Unmanaged | The method is implemented in unmanaged code. | |
ForwardRef | The method is declared, but its implementation is provided elsewhere. | |
PreserveSig | The method signature is exported exactly as declared. | |
InternalCall | The call is internal, that is, it calls a method that is implemented within the common language runtime. | |
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. | |
NoInlining | The method cannot be inlined. Inlining is an optimization by which a method call is replaced with the method body. |
Remarks
This enumeration is used with the MethodImplAttributeattribute.
You can specify multiple MethodImplOptions values by using the bitwise OR operator.
Note
Locking on the instance or on the type, as with the 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.