Sheas-Cealer/Utils/Command.cs
2024-05-18 18:16:48 +08:00

20 lines
478 B
C#

using System;
using System.Diagnostics;
using SheasCore;
namespace Sheas_Cealer.Utils;
internal class Command : Proc
{
internal Command() : base("Cmd.exe")
{
}
public override void Process_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
}
public override void Process_ErrorDataReceived(object sender, DataReceivedEventArgs e)
{
}
public override void Process_Exited(object sender, EventArgs e) => Environment.Exit(0);
}