Code:
using System;
class Program
{
static void Main()
{
try
{
Environment.Exit(0);
}
finally
{
Console.WriteLine("Statement that is Never Reached");
}
Console.Read();
}
}
Output:
// No Output is obtained
// Calls the Environment.Exit method and returns a zero status code.
// The finally statement is never reached.
More C# Programs: