[Mono-bugs] [Bug 82006][Min] Changed - gmcs doesn't like generic types in XML comments
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Wed Jul 18 06:36:01 EDT 2007
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 atsushi at ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=82006
--- shadow/82006 2007-07-14 14:36:33.000000000 -0400
+++ shadow/82006.tmp.17220 2007-07-18 06:36:01.000000000 -0400
@@ -22,6 +22,18 @@
But I get this warning:
XML comment on `TagLib.StringCollection' has syntactically incorrect cref
attribute `ListBase<T>'(CS1584)
According to http://blogs.msdn.com/ansonh/archive/2006/09/11/750056.aspx,
both "ListBase<string>" and "ListBase{string}" should both work.
+
+------- Additional Comments From atsushi at ximian.com 2007-07-18 06:36 -------
+The actual csc behavior is that
+ <see
+cref="ListBase<string>" />
+does not work, while
+ <see
+cref="T:ListBase<string>" />
+works. Actually
+ <see
+cref="T:#$%>" />
+works i.e. nothing is checked when T: (or whatever x:) is specified.
More information about the mono-bugs
mailing list