mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
13 lines
255 B
C#
13 lines
255 B
C#
#nullable disable
|
|
namespace NadekoBot.Common;
|
|
|
|
public static class Helpers
|
|
{
|
|
public static void ReadErrorAndExit(int exitCode)
|
|
{
|
|
if (!Console.IsInputRedirected)
|
|
Console.ReadKey();
|
|
|
|
Environment.Exit(exitCode);
|
|
}
|
|
} |