Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=76397 --- shadow/76397 2005-10-10 10:27:58.000000000 -0400 +++ shadow/76397.tmp.12225 2005-10-10 13:23:16.000000000 -0400 @@ -2,13 +2,13 @@ Product: Mono: Class Libraries Version: 1.1 OS: GNU/Linux [Other] OS Details: Gentoo Linux Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: CORLIB AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- @@ -70,6 +70,21 @@ will attach test case. ------- Additional Comments From [EMAIL PROTECTED] 2005-10-10 10:27 ------- Created an attachment (id=15894) Testcase for bug + +------- Additional Comments From [EMAIL PROTECTED] 2005-10-10 13:23 ------- +The bug is invalid: + + p.Attributes = MemberAttributes.Public; + +will generate a virtual member, because it's by design. + +To generate a non-virtual member you have to apply this: + + p.Attributes = MemberAttributes.Public | + MemberAttributes.Final + +See http://tinyurl.com/bn6e8 + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
