programming-examples/c-sharp/Functions/C# Program to Demonstrate Environment Type.cs
2019-11-15 12:59:38 +01:00

23 lines
470 B
C#

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