使用英语阅读

通过


编译器警告(等级 1)CS1580

XML 注释 cref 特性中参数“parameter number”的类型无效

当试图引用某个方法的重载格式时,编译器检测到了语法错误。 通常情况下,这指示指定了参数名称,而不是类型。 在生成的 XML 文件中将显示格式不正确的行。

下面的示例生成 CS1580:

C#
// CS1580.cs  
// compile with: /W:1 /doc:x.xml  
using System;  
  
/// <seealso cref="Test(i)"/>   // CS1580  
// try the following line instead  
// /// <seealso cref="Test(int)"/>  
public class MyClass  
{  
   /// <summary>help text</summary>  
   public static void Main()  
   {  
   }  
  
   /// <summary>help text</summary>  
   public void Test(int i)  
   {  
   }  
  
   /// <summary>help text</summary>  
   public void Test(char i)  
   {  
   }  
}