更新:2007 年 11 月
错误消息
“member”上的 XML 注释中有语法错误的 cref 属性“invalid_syntax”传递给文档注释标记的参数之一有无效语法。有关更多信息,请参见
示例
下面的示例生成 CS1584。
复制代码 | |
---|---|
// CS1584.cs // compile with: /W:1 /doc:CS1584.xml /// <remarks>Test class</remarks> public class Test { /// <remarks>Called in <see cref="Test.Mai()n"/>.</remarks> // CS1584 // try the following line instead // /// <remarks>Called in <see cref="Test.Main()"/>.</remarks> public static void Test2() {} /// <remarks>Main method</remarks> public static void Main() {} } |