2010-03-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / corlib / System / IComparable.cs
index 9aae54b5245da149e6de14a050c6f436e05ef8bb..08cc1aa326e240da338b77eeb7118c8d50d03547 100644 (file)
@@ -34,9 +34,7 @@ using System.Runtime.InteropServices;
 
 namespace System {
 
-#if NET_2_0
        [ComVisible(true)]
-#endif
        public interface IComparable {
                int CompareTo (object obj);
        }
@@ -45,7 +43,7 @@ namespace System {
        public interface IComparable <in T> {
                int CompareTo (T other);
        }
-#elif NET_2_0
+#else
        public interface IComparable <T> {
                int CompareTo (T other);
        }