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.
Missing file specification for 'option' option
A compiler option was only partially specified.
For example, when using /recurse, you must specify the file to search: /recurse:filename.cs.
Example
The following sample generates CS2005.
// CS2005.cs
// compile with: /recurse:
// CS2005 expected
class x
{
public static void Main() {}
}