Files
DiscordChatExporter/DiscordChatExporter.Gui/Utils/ProcessEx.cs
2021-02-22 03:15:22 +02:00

17 lines
371 B
C#

using System.Diagnostics;
namespace DiscordChatExporter.Gui.Utils
{
internal static class ProcessEx
{
public static void StartShellExecute(string path)
{
var startInfo = new ProcessStartInfo(path)
{
UseShellExecute = true
};
using (Process.Start(startInfo)) {}
}
}
}