using System;
using System.Drawing;
using System.Diagnostics;
public static class DisplayFusionFunction
{
public static void Run()
{
string processName = BFS.Dialog.GetUserInput("Kill process ", "");
Process process = new Process();
process.StartInfo.FileName = "taskkill.exe";
process.StartInfo.Arguments = "/im " + processName + "* /f";
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.StartInfo.CreateNoWindow = true;
process.Start();
}
}