Tom
Tom

Reputation: 1373

Access another program config file

I have program A windows application and program B another windows application. In program B I need to show program A config file. (App.config) That should show in a text box in program B. How can I do this?

Upvotes: 0

Views: 38

Answers (1)

Mohini Mhetre
Mohini Mhetre

Reputation: 919

XmlDocument doc = new XmlDocument();
doc.Load(path of config file of program A);

you can try this one

Upvotes: 1

Related Questions