Merge pull request #1135 from kitsilanosoftware/rpm-spec-dead-entries
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / _MethodInfo.cs
index 9ad7f42b6f9cc9e412be3504d6498657c95aeefb..e8180ad7bf1a8a16094f89a7ed56dd74133f0e87 100644 (file)
@@ -5,8 +5,6 @@
 //   Kazuki Oikawa  (kazuki@panicode.com)
 //
 
-#if NET_1_1
-
 using System;
 using System.Globalization;
 using System.Reflection;
@@ -16,10 +14,13 @@ namespace System.Runtime.InteropServices
        [CLSCompliant (false)]
        [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
        [Guid ("FFCC1B5D-ECB8-38DD-9B01-3DC8ABC2AA5F")]
+#if !FULL_AOT_RUNTIME
        [TypeLibImportClass (typeof (MethodInfo))]
+#endif
+       [ComVisible (true)]
        public interface _MethodInfo
        {
-               bool Equals (object obj);
+               bool Equals (object other);
 
                MethodInfo GetBaseDefinition();
                
@@ -97,4 +98,3 @@ namespace System.Runtime.InteropServices
                ICustomAttributeProvider ReturnTypeCustomAttributes {get;}
        }
 }
-#endif