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.
Expected catch or finally
A try block must be followed by a catch or finally block.
For more information on exceptions, see Exceptions and Exception Handling.
Example
The following sample generates CS1524:
// CS1524.cs
class x
{
public static void Main()
{
try
{
// Code here
}
catch
{
}
try
{
// Code here
}
finally
{
}
try
{
// Code here
}
} // CS1524, missing catch or finally
}
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.