using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Net.NetworkInformation;
using System.Threading;
using System.Globalization;
namespace Test1
{
class Program
{
static void Main(string[] args)
{
//Exception handeling mechanism
try
{
throw new Exception("This is exceptio");
}
catch (Exception ex)
{
Console.Write(ex.Message);
}
finally
{
//Release your resource here
}
Console.ReadLine();
}
}
}