| Author: Payal Jain 22 May 2008 | Member Level: Gold Points : 2 |
to know the path to ur machine.config file use following code
using System.Configuration;
Configuration cnf;
cnf = ConfigurationManager.OpenMachineConfiguration();
MessageBox.Show(cnf.FilePath);
note: You will need to add a reference to the System.Configuration.dll to be able to use this
|