Fix null sessions in HttpContextWrapper.Session
[mono.git] / mcs / class / corlib / System.Collections / IHashCodeProvider.cs
index e3538bce5c09f5228415f512b6e4ab0139c53dde..aa46415b132bffd8b51e7ba223715d692d486ba6 100644 (file)
@@ -36,11 +36,14 @@ using System.Runtime.InteropServices;
 
 namespace System.Collections {
 
-#if NET_2_0
        [Obsolete ("Please use IEqualityComparer instead.")]
        [ComVisible(true)]
+#if INSIDE_CORLIB
+       public
+#else
+       internal
 #endif
-       public interface IHashCodeProvider {
+       interface IHashCodeProvider {
                int GetHashCode (object obj);
        }
 }