Files
DiscordChatExporter/DiscordChatExporter.Gui/Internal/ProcessEx.cs
2020-04-05 00:31:01 +03:00

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