* TimeSpan.cs: In 4.0 if the part parsed as days exceeds the allowed
[mono.git] / mcs / class / corlib / System / GCCollectionMode.cs
index 7f266a33b7ab7f22bcd1e9d4a2bdfdccb55db922..0134db6dd175d800727608f322b12c55db196759 100644 (file)
 
 // Net 3.5 type
 
-#if NET_2_0
-
 namespace System
 {
+       [Serializable]
        public enum GCCollectionMode {
                Default = 0,
                Forced = 1,
                Optimized = 2
        }
 }
-
-#endif