Leggere in inglese

Condividi tramite


Errore del compilatore CS1724

Il valore specificato per l'argomento di 'System.Runtime.InteropServices.DefaultCharSetAttribute' non è valido

Questo errore viene generato da un argomento non valido nella classe DefaultCharSetAttribute .

Esempio

L'esempio seguente genera l'errore CS1724.

C#
// CS1724.cs  
using System.Runtime.InteropServices;  
// To resolve, replace 42 with a valid CharSet value.  
 [module:DefaultCharSetAttribute((CharSet)42)]   // CS1724  
class C {
  
[DllImport("F.Dll")]  
extern static void FW1Named();  
  
static void Main() {}  
}