[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / _ConstructorInfo.cs
index ab6dd96bc65ba6e6d3ebf4a3fc72accce912ffaf..7759e5222972b11a1cc4637181017e05ba4e61df 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 ("E9A19478-9646-3679-9B10-8411AE1FD57D")]
+#if !FULL_AOT_RUNTIME
        [TypeLibImportClass (typeof (ConstructorInfo))]
+#endif
+       [ComVisible (true)]
        public interface _ConstructorInfo
        {
-               bool Equals (object obj);
+               bool Equals (object other);
 
                object[] GetCustomAttributes (bool inherit);
 
@@ -95,4 +96,3 @@ namespace System.Runtime.InteropServices
                Type ReflectedType {get;}
        }
 }
-#endif