Files
DiscordChatExporter/DiscordChatExporter.Gui/Utils/ProcessEx.cs
Oleksii Holub 1daff4178d Cleanup GUI
2022-04-01 00:10:17 +03:00

18 lines
342 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))
{
}
}
}