[runtime] Updates comments.
[mono.git] / mcs / class / corlib / System.Reflection / DefaultMemberAttribute.cs
index 63e8efcbd3e1319c8302cfad052d42a895b8c844..c1c62a779fb4b2979aa99871493331482468be76 100644 (file)
@@ -34,18 +34,16 @@ using System.Runtime.InteropServices;
 
 namespace System.Reflection {
 
-#if NET_2_0
        [ComVisible (true)]
-#endif
        [Serializable]
        [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
                AttributeTargets.Interface)]
        public sealed class DefaultMemberAttribute : Attribute {
                string member_name;
                
-               public DefaultMemberAttribute (string member_name)
+               public DefaultMemberAttribute (string memberName)
                {
-                       this.member_name = member_name;
+                       this.member_name = memberName;
                }
 
                public string MemberName {