| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // MethodImplOptions.cs
- //
- // This code was automatically generated from
- // ECMA CLI XML Library Specification.
- // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
- // Created: Fri, 7 Sep 2001 16:33:23 UTC
- // Source file: AllTypes.xml
- // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- namespace System.Runtime.CompilerServices {
- /// <summary>
- /// </summary>
- public enum MethodImplOptions {
- /// <summary>
- /// </summary>
- Unmanaged = 4,
- /// <summary>
- /// </summary>
- ForwardRef = 16,
- /// <summary>
- /// </summary>
- InternalCall = 4096,
- /// <summary>
- /// </summary>
- Synchronized = 32,
- /// <summary>
- /// </summary>
- NoInlining = 8,
- } // MethodImplOptions
- } // System.Runtime.CompilerServices
|