更新:2007 年 11 月
错误消息
缺少对公共可见类型或成员“Type_or_Member”的 XML 注释指定了
下面的示例生成 CS1591:
// CS1591.cs
// compile with: /W:4 /doc:x.xml
/// text
public class Test
{
// /// text
public static void Main() // CS1591, remove "//" from previous line
{
}
} | |