Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
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