add DebuggerVisualizerAttribute, and make all the attributes available in the 1.1...
[mono.git] / mcs / class / corlib / System.Diagnostics / DebuggerBrowsableState.cs
index 77e99ced6942e7f41bb483208f11108e63b5abc2..e40ffc5e24ab142dfabe74a5832c8dc1a12b271a 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 namespace System.Diagnostics {
 
        // XXX make sure this matches MS's enum
+#if NET_2_0
        public enum DebuggerBrowsableState
+#else
+       internal enum DebuggerBrowsableState
+#endif
        {
                Never,
                Collapsed,
@@ -41,5 +43,3 @@ namespace System.Diagnostics {
                RootHidden
        }
 }
-
-#endif