Partager via


Erreur du compilateur CS0601

Mise à jour : novembre 2007

Message d'erreur

L'attribut DllImport doit être spécifié sur une méthode marquée 'static' et 'extern'
The DllImport attribute must be specified on a method marked 'static' and 'extern'

L'attribut DllImport a été utilisé sur une méthode qui n'utilise pas les mots clés d'accès corrects.

L'exemple suivant génère l'erreur 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 ()
   {
   }
}