using System; namespace Example3 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { int a = 1, b = 0, c; c = a / b; Console.WriteLine("c= " + c); } } }