i am new in C# and working on Console Applications now a days i wrote the following code :
Program.cs
using System; using System.Collect
something like this :
static void Main(string[] args) { string selectedOption = ""; do { ........... } while (selectedOption == "y") if (selectedOption == "n") { //Terminate the Program } }