Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message in error reporting to Microsoft.
This method terminates a process without running any active try/finally blocks or finalizers.
The Environment.FailFast(string) method writes the message string to the Windows Application event log, creates a dump of your application, and then terminates the current process. The message string is also included in error reporting to Microsoft.
Use the Environment.FailFast(string) method instead of the Environment.Exit(int) method to terminate your application if the state of your application is damaged beyond repair, and executing your application's try/finally blocks and finalizers will corrupt program resources.