Compiler Error CS0818
Implicitly typed locals must be initialized
An implicitly typed local variable must be initialized with a value at the same time that it is declared.
- Assign a value to the variable or else give it an explicit type.
The following code generates CS0818:
// cs0818.cs
class A
{
public static int Main()
{
var a; // CS0818
return -1;
}
}
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: