Compilerwarnung (Stufe 2) CS1571
Aktualisiert: November 2007
Fehlermeldung
Der XML-Kommentar für "Konstrukt" enthält ein doppeltes param-Tag für "Parameter".
XML comment on 'construct' has a duplicate param tag for 'parameter'
Bei Verwendung der Compileroption /doc wurden mehrere Kommentare für ein und denselben Methodenparameter gefunden. Entfernen Sie eine der doppelten Zeilen.
Im folgenden Beispiel wird CS1571 generiert:
// 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 ()
{
}
}