編譯器警告 (層級 2) CS1571
'construct' 上的 XML 註解有 'parameter' 重複的 param 標記
使用「DocumentationFile」 編譯器選項時,找到相同方法參數的多個註解。 請移除重複程式行中的其中一行。
下列範例會產生 CS1571:
C#
// CS1571.cs
// compile with: /W:2 /doc:x.xml
/// <summary>help text</summary>
public class MyClass
{
/// <param name='Int1'>Used to indicate status.</param>
/// <param name='Char1'>An initial.</param>
/// <param name='Int1'>Used to indicate status.</param> // CS1571
public static void MyMethod(int Int1, char Char1)
{
}
/// <summary>help text</summary>
public static void Main ()
{
}
}