[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Reflection / ObfuscationAttribute.cs
index 2da71a1d1d33c6d6f2ae317f07eba8b96414d6e2..4ce4a57ad35386a5a70f893967bc86e4531403d7 100644 (file)
@@ -28,8 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0 || BOOTSTRAP_NET_2_0
-
 using System;
 using System.Runtime.InteropServices;
 
@@ -70,16 +68,6 @@ namespace System.Reflection
                        }
                }
 
-               [Obsolete ("Use 'StripAfterObfuscation' instead.")]
-               public bool Strip {
-                       get {
-                               return strip;
-                       }
-                       set {
-                               strip = value;
-                       }
-               }
-
                public bool ApplyToMembers {
                        get {
                                return applyToMembers;
@@ -100,5 +88,4 @@ namespace System.Reflection
        }
 }
 
-#endif