Environment.HasShutdownStarted Property
Gets a value indicating whether the common language runtime (CLR) is shutting down.
Assembly: mscorlib (in mscorlib.dll)
When the CLR shuts down, it starts the finalizer thread on all objects that have a finalizer method. The HasShutdownStarted property returns true only after the finalizer thread has been started. The CLR unloads the application domain at this time; therefore, the AppDomain.IsFinalizingForUnload method also returns true.
This property returns false if the finalizer thread has not been started.
By using this property, you can determine whether to access static variables in your finalization code. If the CLR is shutting down, you cannot reliably access any object that has a finalization method and that is referenced by a static field. This is because these objects may have already been finalized.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.