使用英语阅读

通过


编译器错误 CS0601

必须在标记为 "static" 和 "extern" 的方法上指定 DllImport 特性

在没有正确的访问关键字的方法上使用 DllImport 特性。

以下示例生成 CS0601:

// CS0601.cs  
using System.Runtime.InteropServices;  
using System.Text;  
  
public class C  
{  
   [DllImport("KERNEL32.DLL")]  
   extern int GetCurDirectory(int bufSize, StringBuilder buf);   // CS0601  
   // Try the following line instead:  
   // static extern int GetCurDirectory(int bufSize, StringBuilder buf);  
}  
  
public class MainClass  
{  
   public static void Main ()  
   {  
   }  
}