Compiler Error CS1515
'in' expected
In a foreach, in statement, the "in" part is missing.
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);
}
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: