Dela via


Kompilatorvarning (nivå 4) CS1591

XML-kommentar saknas för offentligt synlig typ eller medlem "Type_or_Member"

Alternativet DocumentationFile-kompilator angavs, men en eller flera konstruktioner hade inga kommentarer.

Följande exempel genererar CS1591:

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