Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 779 Bytes

cs1515.md

File metadata and controls

38 lines (31 loc) · 779 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Compiler Error CS1515
Compiler Error CS1515
07/20/2015
CS1515
CS1515
17d9dbbe-14a0-4c80-a942-82fa6ec2b0b0

Compiler Error CS1515

'in' expected

In a foreach, in statement, the "in" part is missing.

Example

The following sample generates CS1515:

using System;  
  
class Driver  
{  
   static void Main()  
   {  
      int[] arr = new int[] {1, 2, 3};  
  
      // try the following line instead  
      // foreach (int x in arr)  
      foreach (int x arr)      // CS1515, "in" is missing  
      {  
         Console.WriteLine(x);  
      }  
   }  
}