Freigeben über


Compilerwarnung (Stufe 2) CS1587

Der XML-Kommentar ist auf keinem gültigen Sprachelement abgelegt.

Empfohlene Tags für Dokumentationskommentare sind nicht für alle Sprachelemente zulässig. Tags sind z. B. für Namespaces nicht zulässig. Weitere Informationen zu XML-Kommentaren finden Sie unter Recommended Tags for Documentation Comments.

Beispiel

Im folgenden Beispiel wird CS1587 generiert:

// CS1587.cs  
// compile with: /W:2 /doc:x.xml  
  
/// <summary>test</summary>   // CS1587, tag not allowed on namespace  
namespace MySpace  
{  
    class MyClass  
    {  
        public static void Main()  
        {  
        }  
    }  
}