DebugSetProcessKillOnExit

[DllImport("Kernel32.dll")][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DebugSetProcessKillOnExit(
   [MarshalAs(UnmanagedType.Bool)] bool KillOnExit
);

Microsoft documentation: Link

Last updated