I am trying to make an argument with the following
What i am trying to achieve is once i click on the 'button4', the dns should be flushed and a pop should appear. I am stuck on this. Any help would be appreciated.
        {
            try
            {
                Process.Start(new ProcessStartInfo
                {
                    FileName = "cmd.exe",
                    Arguments = "/c ipconfig / flushdns",
                    WindowStyle = ProcessWindowStyle.Hidden
                });
            }
            catch { }```
