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.
Semicolon after method or accessor block is not valid
Semicolons are not needed (or allowed) to end a method or accessor block.
The following sample generates CS1597:
// CS1597.cs
class MyClass
{
public int Prop { get; }; // CS1597
public static void Main() { }; // CS1597
}
To resolve this error, remove the extra trailing semicolon.
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.