Leggere in inglese

Condividi tramite


Errore del compilatore CS0647

Errore nella generazione dell'attributo 'attribute' -- 'reason'

L'esempio seguente genera l'errore CS0647:

C#
// 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()  
   {  
   }  
}