mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
15 lines
307 B
C#
15 lines
307 B
C#
using System;
|
|
|
|
namespace NadekoBot.Core.Common
|
|
{
|
|
public static class Helpers
|
|
{
|
|
public static void ReadErrorAndExit(int exitCode)
|
|
{
|
|
if (!Console.IsInputRedirected)
|
|
Console.ReadKey();
|
|
|
|
Environment.Exit(exitCode);
|
|
}
|
|
}
|
|
} |