forked from EllieBotDevs/elliebot
13 lines
254 B
C#
13 lines
254 B
C#
|
#nullable disable
|
|||
|
namespace EllieBot.Common;
|
|||
|
|
|||
|
public static class Helpers
|
|||
|
{
|
|||
|
public static void ReadErrorAndExit(int exitCode)
|
|||
|
{
|
|||
|
if (!Console.IsInputRedirected)
|
|||
|
Console.ReadKey();
|
|||
|
|
|||
|
Environment.Exit(exitCode);
|
|||
|
}
|
|||
|
}
|