Answers for "how to create c# console application in cmd"

C#
7

how to make c# program run cmd commands

string strCmdText;
strCmdText= "/C copy /b Image1.jpg + Archive.rar Image2.jpg";
System.Diagnostics.Process.Start("CMD.exe",strCmdText);
Posted by: Guest on May-28-2020
2

how to make a new console application in c#

dotnet new console -o myApp
Posted by: Guest on June-23-2021

Code answers related to "how to create c# console application in cmd"

C# Answers by Framework

Browse Popular Code Answers by Language