Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# exit application

// In a console application:
Environment.Exit(0);
// In a WPF application:
Close();
Comment

c# exit application


if (System.Windows.Forms.Application.MessageLoop) 
{
    // WinForms app
    System.Windows.Forms.Application.Exit();
}
else
{
    // Console app
    System.Environment.Exit(1);
}

Comment

c# how to exit program

System.Environment.Exit(1);
Comment

exit a method c#

private void Test(int condition)
{
  if(condition)
    return; // Exit the methode

  // Here code if condition == false
}
Comment

exit programm c#

 Application.Exit();
Comment

c# program exit

System.Windows.Forms.Application.ExitThread( )
Comment

PREVIOUS NEXT
Code Example
Csharp :: set particle system start colour + random between two 
Csharp :: c# xpath read attribute value 
Csharp :: c# paste from clipboard 
Csharp :: c# tryparse int 
Csharp :: c# keep console open 
Csharp :: unity keycode 
Csharp :: unity3d change player position 
Csharp :: c# create file 
Csharp :: unity up arrow input 
Csharp :: c# mongodb connection 
Csharp :: public GameObject 
Csharp :: c# delay 
Csharp :: ggdesign 
Csharp :: video gets pixelated unity 
Csharp :: reverse for loop 
Csharp :: wpf restart application c# 
Csharp :: unity smooth rotation 2d 
Csharp :: download file from url asp net web api c# 
Csharp :: get query string parameter from string value c# 
Csharp :: how to sort string array alphabetically in c# 
Csharp :: unity position localposition 
Csharp :: get hard disk serial number 
Csharp :: unity create a child object 
Csharp :: debug c# console 
Csharp :: c# size of enum 
Csharp :: difference between iqueryable and ienumerable c# 
Csharp :: 2d list in c# 
Csharp :: c# timestamp now 
Csharp :: send type as argument c# 
Csharp :: C# Unit test IConfiguration 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =