2002-07-23 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / corlib / System.Runtime.CompilerServices / MethodImplOptions.cs
1 // MethodImplOptions.cs
2 //
3 // This code was automatically generated from
4 // ECMA CLI XML Library Specification.
5 // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
6 // Created: Fri, 7 Sep 2001 16:33:23 UTC
7 // Source file: AllTypes.xml
8 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Runtime.CompilerServices {
14
15
16         /// <summary>
17         /// </summary>
18         public enum MethodImplOptions {
19
20                 /// <summary>
21                 /// </summary>
22                 Unmanaged = 4,
23
24                 /// <summary>
25                 /// </summary>
26                 ForwardRef = 16,
27
28                 /// <summary>
29                 /// </summary>
30                 InternalCall = 4096,
31
32                 /// <summary>
33                 /// </summary>
34                 Synchronized = 32,
35
36                 /// <summary>
37                 /// </summary>
38                 NoInlining = 8,
39
40                 /// <summary>
41                 /// </summary>
42                 PreserveSig = 128,
43
44         } // MethodImplOptions
45
46 } // System.Runtime.CompilerServices