open file in system using dotnet
CodeKeep C# Feed Agosto 25th, 2008
Description: open file in system using dotnetLink: http://www.codekeep.net/snippets/11821967-f698-4697-bdc9-c20a02f17de9.aspx
System.Diagnostics.Process.Start(<File Path>);
CodeKeep C# Feed Agosto 25th, 2008
Description: open file in system using dotnetSystem.Diagnostics.Process.Start(<File Path>);
CodeKeep C# Feed Agosto 25th, 2008
Description: Access run mode of operating system using dotnet.to open Calculator of OS
-------------------------
System.Diagnostics.Process.Start("calc");
to open Command prompt using dotnet
------------------------------------
System.Diagnostics.Process.Start("cmd");
Similarly just replacing the string in start
we can access Components of operating system
, Which are opened from Run Mode