编译器警告(等级 1)CS1574
“construct”的 XML 注释中有语法错误的 cref 特性“name”
传递给 cref 标记的字符串(例如在 <exception> 标记中)引用了在当前生成环境中不可用的成员。 传递给 cref 标记的字符串必须是语法正确的成员或字段名称。
有关详细信息,请参阅 建议的文档注释标记。
下面的示例生成 CS1574:
// CS1574.cs
// compile with: /W:1 /doc:x.xml
using System;
/// <exception cref="System.Console.WriteLin">An exception class.</exception> // CS1574
// instead, uncomment and try the following line
// /// <exception cref="System.Console.WriteLine">An exception class.</exception>
class EClass : Exception
{
}
class TestClass
{
public static void Main()
{
try
{
}
catch(EClass)
{
}
}
}