Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21
Angualr Top questions

Details



Peter Agyekum Write down the C# syntax to catch an exception To catch an exception, we use try-catch blocks. Catch block can have a parameter of system.Exception type. eg.try { GetAllData(); } catch (Exception ex) {}
Related Topics