共用方式為


編譯器警告 (層級 1) CS1580

更新:2007 年 11 月

錯誤訊息

XML 註解 cref 屬性中參數 'parameter number' 的型別無效

嘗試參考方法的多載形式時,編譯器偵測到一個語法錯誤。通常,這表示已指定參數名稱,而未指定型別。產生的 XML 檔中將會出現一行格式不正確的程式。

下列範例會產生 CS1580:

// 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)
   {
   }
}