Freigeben über


Compilerfehler CS0186

Die Verwendung von NULL ist in diesem Kontext ungültig.

Im folgenden Beispiel wird CS0186 generiert:

// CS0186.cs  
using System;  
using System.Collections;  
  
class MyClass
{  
   static void Main()
   {  
      // Each of the following lines generates CS0186:  
      foreach (int i in null) {}   // CS0186  
      foreach (int i in (IEnumerable) null) { };   // CS0186  
   }  
}