mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-02 16:19:12 +00:00
17 lines
371 B
C#
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)) {}
|
|
}
|
|
}
|
|
} |