Merge pull request #498 from Unroll-Me/master
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / _Type.cs
index 08622d8594c6b5744b884d32dff4a7778457f541..1565230a30d9159823227bac74ee6bec7e56d667 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 ("BCA8B44D-AAD6-3A86-8AB7-03349F4F2DA2")]
+#if !FULL_AOT_RUNTIME
        [TypeLibImportClass (typeof (Type))]
+#endif
+       [ComVisible (true)]
        public interface _Type
        {
-               bool Equals (object o);
+               bool Equals (object other);
 
                bool Equals (Type o);
 
@@ -245,4 +246,3 @@ namespace System.Runtime.InteropServices
                Type UnderlyingSystemType {get;}
        }
 }
-#endif