Lezen in het Engels

Delen via


Compilerfout CS0255

stackalloc kan niet worden gebruikt in een vangst of definitief blok

U kunt de stackalloc-operator niet gebruiken in een catch of definitief blok. Zie Uitzonderingen en afhandeling van uitzonderingen voor meer informatie.

In het volgende voorbeeld wordt CS0255 gegenereerd:

// CS0255.cs  
// compile with: /unsafe  
using System;  
  
public class TestTryFinally  
{  
   public static unsafe void Test()  
   {  
      int i = 123;  
      string s = "Some string";  
      object o = s;  
  
      try  
      {  
         // Conversion is not valid; o contains a string not an int  
         i = (int) o;  
      }  
      finally  
      {  
         Console.Write("i = {0}", i);  
         int* fib = stackalloc int[100];   // CS0255  
      }  
   }  
  
   public static void Main()  
   {  
   }  
}