Google News
logo
F# - Interview Questions
Explain some reference articles in F# Exception Handling.
The following table shows reference articles that describe language concepts related to exception handling.

Title Description
Exception Handling Contains information about exception handling support in F#.
The try...with Expression Learn about how to use the try...with expression for exception handling.
The try...finally Expression Learn about how the F# try...finally expression enables you to execute clean-up code even if a block of code throws an exception.
The use Keyword Learn about the keywords use and using, which can control the initialization and release of resources.
Assertions Learn about the assert expression, which is a debugging feature that you can use to test an expression. Upon failure in Debug mode, an assertion generates a system error dialog box.
Advertisement