使用英语阅读

通过


编译器错误 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()  
      {  
      }  
   }  
}