where is the properties file I can read from settingsReader in C#?

759 Views Asked by At

I am studying some C# code and I wonder where is the file that is read using this lines:

 System.Configuration.AppSettingsReader settingsReader = new AppSettingsReader();

        string key = (string)settingsReader.GetValue("MyProperty", typeof(String));

I want to get the MyProperty value without running the code. I am using VS2015.

Thank you

1

There are 1 best solutions below

4
On

You can find it in the App.config file in your solution.

After you compile the code, it will be next to your exe file with the name of your exe (e.g MyExeName.exe.config)