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 TestClass
{
public static void Main()
{
}; // CS1597, remove semicolon
}