Lezen in het Engels

Delen via


Compilerwaarschuwing (niveau 2) CS1571

XML-opmerking over 'construct' heeft een dubbele parametertag voor 'parameter'

Wanneer u de optie DocumentationFile-compiler gebruikt, zijn er meerdere opmerkingen gevonden voor dezelfde methodeparameter. Verwijder een van de dubbele regels.

In het volgende voorbeeld wordt CS1571 gegenereerd:

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