Sdílet prostřednictvím


Compilerfehler CS0647

Aktualisiert: November 2007

Fehlermeldung

Fehler beim Ausgeben des "Attribut"-Attributs -- "Ursache".
Error emitting 'attribute' attribute -- 'reason'

Im folgenden Beispiel wird CS0647 generiert:

// CS0647.cs
using System.Runtime.InteropServices;

[Guid("z")]   // CS0647, incorrect uuid format.
// try the following line instead
// [Guid("00000000-0000-0000-0000-000000000001")]
public class MyClass
{
   public static void Main()
   {
   }
}