Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 626 Bytes

cs0186.md

File metadata and controls

31 lines (27 loc) · 626 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Compiler Error CS0186
Compiler Error CS0186
07/20/2015
CS0186
CS0186
b8afca3e-0fb9-44c5-b4bb-abe3ef134e85

Compiler Error CS0186

Use of null is not valid in this context

The following sample generates 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  
   }  
}