Contact: aviboots(AT)netvision.net.il
39,946 questions
51,888 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Program { static void Main(string[] args) { int a = 13, b = 0; try { int n = a / b; } catch (Exception ex) { Console.WriteLine(ex.Message); } } } } /* run: Attempted to divide by zero. */