2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / class / corlib / System.Runtime.CompilerServices / MethodImplAttribute.cs
index 8351de40297f9866da8ee4160732464fd323f150..afb691b15ac9e2efbdfe6376f80a6979513e54e5 100644 (file)
@@ -47,14 +47,14 @@ namespace System.Runtime.CompilerServices {
                {
                }
 
-               public MethodImplAttribute (short options)
+               public MethodImplAttribute (short value)
                {
-                       _val = (MethodImplOptions) options;
+                       _val = (MethodImplOptions) value;
                }
 
-               public MethodImplAttribute (MethodImplOptions options)
+               public MethodImplAttribute (MethodImplOptions methodImplOptions)
                {
-                       _val = options;
+                       _val = methodImplOptions;
                }
 
                public MethodCodeType MethodCodeType;