打开另一个程序配置文件C#

时间:2014-03-22 08:47:37

标签: c# configuration app-config

我有一个Windows应用程序和程序B另一个Windows应用程序。在程序B中,我需要打开程序A配置文件。 (App.config)我想在记事本中打开它。我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

您可以使用Process.Start方法启动notepad.exe并指定文件的路径:

Process.Start("notepad.exe", "c:\path_to_a\app.config");

答案 1 :(得分:1)

很简单,

string filename = "C:\Users\Documents\Visual Studio 2010\Projects\myproject\app.config";

开始新流程

Process.Start("notepad.exe",filename);