使用英语阅读

通过


编译器错误 CS0423

由于“class”具有 ComImport 特性,因此“method”必须是外部的或抽象的

指定 ComImport 特性意味着类的实现将从 COM 模块导入。 不能定义其他方法。

下面的示例生成 CS0423:

// CS0423.cs  
  
using System.Runtime.InteropServices;  
  
[  
  ComImport,  
  Guid("7ab770c7-0e23-4d7a-8aa2-19bfad479829")  
]  
class ImageProperties  
{  
  public static void Main()  // CS0423  
  {  
    ImageProperties i = new ImageProperties();  
  }  
}