| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Runtime.CompilerServices.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Runtime.InteropServices;
- namespace System.Runtime.CompilerServices {
- [AttributeUsage(AttributeTargets.Method, Inherited=false)]
- public class MethodImplAttribute : Attribute {
- MethodImplOptions impl_options;
-
- public MethodImplAttribute ()
- {
- }
- public MethodImplAttribute (short options)
- {
- impl_options = (MethodImplOptions) options;
- }
- public MethodImplAttribute (MethodImplOptions options)
- {
- impl_options = options;
- }
- public MethodCodeType MethodCodeType;
- public MethodImplOptions Value {
- get {
- return impl_options;
- }
- }
- }
- }
|