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=79754 --- shadow/79754 2006-10-27 11:55:35.000000000 -0400 +++ shadow/79754.tmp.9574 2006-10-27 11:55:35.000000000 -0400 @@ -0,0 +1,58 @@ +Bug#: 79754 +Product: Mono: Compilers +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: C# +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: mcs /doc doesn't document nested delegates. + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: + +`mcs /doc' doesn't export XML documentation for nested delegates. + +Steps to reproduce the problem: +1. Save the following code as nested.cs: + + // mcs /doc test for nested types + + /// <summary>Global delegate</summary> + public delegate void GlobalDel (); + + + /// <summary>Outer class</summary> + public class Outer { + /// <summary>Inner Class</summary> + public delegate void Del (); + + public static void Main () + { + } + } + +2. Compile it: mcs /doc:nested.xml nested.cs +3. View nested.cs. + +Actual Results: + +There is no documentation for the type T:Outer.Del (the nested delegate). + +Expected Results: + +Documentation for the nested delegate T:Outer.Del should be generated. + + +How often does this happen? + +Always. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
