C# Try-Catch-Finally Usage For Exception Handling
This example shows how to use a try-catch statement for exception handling.
Sample Usage:
try { //Do something } catch(Exception ex) { //Handle exception } finally { //This code is always executed }