Compilerwarnung (Stufe 2) CS1587
Aktualisiert: November 2007
Fehlermeldung
Der XML-Kommentar ist auf keinem gültigen Sprachelement abgelegt.
XML comment is not placed on a valid language element
Empfohlene Tags für Dokumentationskommentare sind nicht für alle Sprachelemente zulässig. Ein Tag ist z. B. bei einem Namespace nicht zulässig. Weitere Informationen zu XML-Kommentaren finden Sie unter Empfohlene Tags für Dokumentationskommentare (C#-Programmierhandbuch).
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()
{
}
}
}