mscorlib(4.0.0.0) API with additions
MethodImplOptions.cs
2 
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum MethodImplOptions
11  {
13  Unmanaged = 0x4,
15  ForwardRef = 0x10,
17  [__DynamicallyInvokable]
18  PreserveSig = 0x80,
20  InternalCall = 0x1000,
22  Synchronized = 0x20,
24  [__DynamicallyInvokable]
25  NoInlining = 0x8,
27  [ComVisible(false)]
28  [__DynamicallyInvokable]
29  AggressiveInlining = 0x100,
31  [__DynamicallyInvokable]
32  NoOptimization = 0x40
33  }
34 }
Definition: __Canon.cs:3
MethodImplOptions
Defines the details of how a method is implemented.
Specifies that the class can be serialized.