Leggere in inglese

Condividi tramite


Errore del compilatore CS0596

L'attributo Guid deve essere specificato con l'attributo ComImport

L'attributo Guid deve essere presente quando si usa l'attributo ComImport .

L'esempio seguente genera l'errore CS0596:

// CS0596.cs  
using System.Runtime.InteropServices;  
  
namespace x  
{  
   [ComImport]   // CS0596  
   // try the following line to resolve this CS0596  
   // [ComImport, Guid("00000000-0000-0000-0000-000000000001")]  
   public class a  
   {  
   }  
  
   public class b  
   {  
      public static void Main()  
      {  
      }  
   }  
}