英語で読む

次の方法で共有


コンパイラ エラー CS0596

Guid 属性は Comimport 属性を使って指定する必要があります。

ComImport 属性を使用する場合には、 Guid 属性が存在する必要があります。

次の例では 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()  
      {  
      }  
   }  
}