Share via


Compilerwaarschuwing (niveau 4) CS1591

Ontbrekende XML-opmerking voor openbaar zichtbaar type of lid 'Type_or_Member'

De optie DocumentationFile-compiler is opgegeven, maar een of meer constructies hebben geen opmerkingen.

In het volgende voorbeeld wordt CS1591 gegenereerd:

// CS1591.cs  
// compile with: /W:4 /doc:x.xml  
  
/// text  
public class Test  
{  
   // /// text  
   public static void Main()   // Try the following instead: remove "//" from previous line (`// /// text` about the comments)  
                               //or add #pragma warning disable 1591
                               //a good practice is add the following comments:
                               // /// <summary>
                               // /// 
                               // /// </summary>
                               // this can be easily achieve at Visual Studio in a simple way adding triple forward slashes (`///`)
   {  
   }  
}