Lezen in het Engels

Delen via


Compilerfout CS0212

U kunt alleen het adres van een niet-opgeloste expressie in een initialisatiefunctie voor vaste instructies gebruiken

Zie Onveilige code en aanwijzers voor meer informatie.

In het volgende voorbeeld ziet u hoe u het adres van een niet-opgeloste expressie kunt gebruiken. In het volgende voorbeeld wordt CS0212 gegenereerd.

// CS0212a.cs  
// compile with: /unsafe /target:library  
  
public class A {  
   public int iField = 5;  
  
   unsafe public void M() {
      A a = new A();  
      int* ptr = &a.iField;   // CS0212
   }  
  
   // OK  
   unsafe public void M2() {  
      A a = new A();  
      fixed (int* ptr = &a.iField) {}  
   }  
}  

Het volgende voorbeeld genereert ook CS0212 en laat zien hoe u de fout kunt oplossen:

// CS0212b.cs  
// compile with: /unsafe /target:library  
using System;  
  
public class MyClass  
{  
   unsafe public void M()  
   {  
      // Null-terminated ASCII characters in an sbyte array
      sbyte[] sbArr1 = new sbyte[] { 0x41, 0x42, 0x43, 0x00 };  
      sbyte* pAsciiUpper = &sbArr1[0];   // CS0212  
      // To resolve this error, delete the previous line and
      // uncomment the following code:  
      // fixed (sbyte* pAsciiUpper = sbArr1)  
      // {  
      //    String szAsciiUpper = new String(pAsciiUpper);  
      // }  
   }  
}