mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-03 16:43:50 +00:00
17 lines
350 B
C#
17 lines
350 B
C#
using System.Diagnostics;
|
|
|
|
namespace DiscordChatExporter.Gui.Utils;
|
|
|
|
internal static class ProcessEx
|
|
{
|
|
public static void StartShellExecute(string path)
|
|
{
|
|
using var process = new Process
|
|
{
|
|
StartInfo = new ProcessStartInfo { FileName = path, UseShellExecute = true }
|
|
};
|
|
|
|
process.Start();
|
|
}
|
|
}
|