更新:2007 年 11 月
错误消息
参数“parameter”在“parameter”的 XML 注释中没有匹配的 param 标记(但其他参数有)当使用
下面的示例生成 CS1573:
复制代码 | |
---|---|
// CS1573.cs // compile with: /W:4 public class MyClass { /// <param name='Int1'>Used to indicate status.</param> // enter a comment for Char1? public static void MyMethod(int Int1, char Char1) { } public static void Main () { } } |