Answers for "how to exit application .net"

C#
3

how to exit application c# console

System.Environment.Exit(0);
// or
Environment.Exit(0);
Posted by: Guest on October-02-2020
1

c# application exit

private void button1_Click(object sender, EventArgs e) // this is your button double click your button and you will find it
        {
            Application.Exit();
        }
Posted by: Guest on February-06-2021

Code answers related to "how to exit application .net"

C# Answers by Framework

Browse Popular Code Answers by Language