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 (`///`)
{
}
}
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.