I’m creating a windows application and here I faced a scenario that I need to open SQL Server Management Studio through C# code. Is there any way to open this SQL Server Management Studio executable through code?
Note:
I mean to open Sqlserver management studio.
You can launch an exe using the Process.Start method, see here
For example…