Horje
c# how to run external program 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();
        }
    }
}
c# how to run external program
Process ExternalProcess = new Process();
ExternalProcess.StartInfo.FileName = "Notepad.exe";
ExternalProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
ExternalProcess.Start();
ExternalProcess.WaitForExit();




Csharp

Related
c# format string with 2 decimals Code Example c# format string with 2 decimals Code Example
sum of two numbers in c# Code Example sum of two numbers in c# Code Example
how to make a pause feautre in unity Code Example how to make a pause feautre in unity Code Example
unity3d quaternion add 90 degrees Code Example unity3d quaternion add 90 degrees Code Example
C++ in C# Code Example C++ in C# Code Example

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