[Mono-bugs] [Bug 76685][Nor] Changed - XML doc does not support reference to indexer.

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Nov 13 05:22:35 EST 2005


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 gert.driesen at pandora.be.

http://bugzilla.ximian.com/show_bug.cgi?id=76685

--- shadow/76685	2005-11-12 14:22:28.000000000 -0500
+++ shadow/76685.tmp.21383	2005-11-13 05:22:35.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 76685
 Product: Mono: Compilers
 Version: 1.1
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: C#
 AssignedTo: atsushi at ximian.com                            
 ReportedBy: gert.driesen at pandora.be               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
@@ -48,6 +48,43 @@
         <member name="T:Test">
             <summary><see cref="P:System.Collections.IDictionary.Item
 (System.Object)"/></summary>
         </member>
     </members>
 </doc>
+
+------- Additional Comments From gert.driesen at pandora.be  2005-11-13 05:22 -------
+This code snippet exposes another issue with regards to indexers:
+
+using System.Collections;
+
+/// <summary>
+///   <para><see cref="IDictionary.this[object]" /></para>
+///   <para><see cref="A.this" /></para>
+///   <para><see cref="B.this" /></para>
+/// </summary>
+public class Test
+{
+  static void Main()
+  {
+  }
+
+  private class A
+  {
+    public object this[int index] {
+      get { return null; }
+    }
+
+    public object this[string index] {
+      get { return null; }
+    }
+  }
+
+  private class B
+  {
+    public object this[int index] {
+      get { return null; }
+    }
+  }
+}
+
+Let me know if you want me to create a separate bug report for this.


More information about the mono-bugs mailing list