Skip to content

C# Tips and tricks

Vivek Kushwaha edited this page Aug 7, 2022 · 2 revisions

C# Tips

1. How to Run dos commands in C#

System.Diagnostics.Process.Start("cmd");
  • Replace cmd with your dos command.

Clone this wiki locally