İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0601

DllImport özniteliği 'static' ve 'extern' işaretli bir yöntemde belirtilmelidir

DllImport özniteliği, doğru erişim anahtar sözcüklerine sahip olmayan bir yöntemde kullanıldı.

Aşağıdaki örnek CS0601 oluşturur:

C#
// 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 ()  
   {  
   }  
}