Lezen in het Engels

Delen via


Compilerfout CS0247

Kan geen negatieve grootte gebruiken met stackalloc

Er is een negatief getal doorgegeven aan een stackalloc-instructie .

In het volgende voorbeeld wordt CS0247 gegenereerd:

// CS0247.cs  
// compile with: /unsafe  
public class MyClass  
{  
   unsafe public static void Main()  
   {  
      int *p = stackalloc int[-30];   // CS0247  
   }  
}