Horje
how to run an external program with c# Code Example
how to run an external program with c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;

namespace Demo_Console
{
    class Program
    {
        static void Main(string[] args)
        {
            Process ExternalProcess = new Process();
            ExternalProcess.StartInfo.FileName = "Notepad.exe";
            ExternalProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
            ExternalProcess.Start();
            ExternalProcess.WaitForExit();
        }
    }
}




Csharp

Related
how to delete all files in a directory c# Code Example how to delete all files in a directory c# Code Example
unity textmeshpro Code Example unity textmeshpro Code Example
how to change image color unity Code Example how to change image color unity Code Example
c# save bytes array to file Code Example c# save bytes array to file Code Example
unity random range Code Example unity random range Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11