* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Reflection / TypeAttributes.cs
old mode 100755 (executable)
new mode 100644 (file)
index 6ad5df3..5e5ec44
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+using System.Runtime.InteropServices;
 
 namespace System.Reflection {
 
 
        /// <summary>
        /// </summary>
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        [Flags]
        public enum TypeAttributes {
 
@@ -156,6 +160,16 @@ namespace System.Reflection {
                /// <summary>
                /// </summary>
                HasSecurity = 262144,
+
+#if NET_2_0
+               /// <summary>
+               /// </summary>
+               CustomFormatClass = 0x30000,
+
+               /// <summary>
+               /// </summary>
+               CustomFormatMask = 0xc00000
+#endif
        } // TypeAttributes
 
 } // System.Reflection