Files
DiscordChatExporter/DiscordChatExporter.Gui/Internal/ProcessEx.cs
2020-10-24 21:15:58 +03:00

17 lines
374 B
C#

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