Compilerwarnung (Stufe 1) CS0657
Aktualisiert: November 2007
Fehlermeldung
"Attributmodifizierer" ist kein gültiger Attributepfad für diese Deklaration. Gültige Attributepfade für diese Deklaration sind "Pfade". Alle Attribute in diesem Block werden ignoriert.
'attribute modifier' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'locations'. All attributes in this block will be ignored.
Der Compiler hat einen Attributmodifizierer in einem ungültigen Pfad gefunden. Weitere Informationen finden Sie unter Attributziele.
Im folgenden Beispiel wird CS0657 generiert:
// CS0657.cs
// compile with: /target:library
public class TestAttribute : System.Attribute {}
[return: Test] // CS0657 return not valid on a class
class Class1 {}