Auf Englisch lesen

Freigeben über


Compilerwarnung (Stufe 2) CS1571

Der XML-Kommentar für 'Konstrukt' enthält ein doppeltes typeparam-Tag für 'Parameter'.

Bei Verwendung der Compileroption DocumentationFile wurden mehrere Kommentare für 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 ()  
   {  
   }  
}