Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'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);
}
}
}
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.