Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0186

Użycie wartości null jest nieprawidłowe w tym kontekście

Poniższy przykład generuje CS0186:

// 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  
   }  
}