// ThrowTest // Kastar ett undantag med throw och hanterar det med try catch using System; class ThrowTest { static double SafeDiv(double tal1, double tal2) // Metod { if (tal2 == 0) throw new DivideByZeroException(); // Undantag kastas else // Objekt skapas return tal1 / tal2; } static void Main() { try // Undantag hanteras { Console.WriteLine(SafeDiv(8, 0)); // Anrop } catch(DivideByZeroException e) // catch + parameter { Console.WriteLine(e.ToString()); // Undantag skrivs ut } } }