[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System.Reflection / TypeAttributes.cs
index 5e5ec44428b173cf843524cd5d8339f11a6a26bd..f08c7c8173fac856ca43f252c138503d07c52cce 100644 (file)
@@ -39,9 +39,8 @@ namespace System.Reflection {
 
        /// <summary>
        /// </summary>
-#if NET_2_0
        [ComVisible (true)]
-#endif
+       [Serializable]
        [Flags]
        public enum TypeAttributes {
 
@@ -129,6 +128,10 @@ namespace System.Reflection {
                /// </summary>
                Serializable = 8192,
 
+#if NET_4_5
+               WindowsRuntime = 16384,
+#endif
+
                /// <summary>
                /// </summary>
                StringFormatMask = 196608,
@@ -161,7 +164,6 @@ namespace System.Reflection {
                /// </summary>
                HasSecurity = 262144,
 
-#if NET_2_0
                /// <summary>
                /// </summary>
                CustomFormatClass = 0x30000,
@@ -169,7 +171,6 @@ namespace System.Reflection {
                /// <summary>
                /// </summary>
                CustomFormatMask = 0xc00000
-#endif
        } // TypeAttributes
 
 } // System.Reflection