Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to develop config editor for app.config files. That i swhy I need to have description field in every record. Is it possible to add additional field to configuration section appSettings? For example:

<appSettings>
    <add key="Provider" description ="Data Provider Name" value="SqlServer"/>
...

When I do this then app catch exception here

System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader();
share|improve this question
Well, I think it's clearer to use comments if it isn't a part of data you use in your app. If you need to read descripition value you should add custom section to your web.config – Denis Agarev Jan 28 at 13:39
Not to be rude, but if you really want to develo an app.config editor, you should start to study what is an appSettings section – Steve Jan 28 at 13:47
Thatnk you Steve, I know what is it. – Oleg Jan 28 at 15:27

closed as not a real question by Steve, Kami, Felipe Sabino, Sjoerd, Soner Gönül Jan 29 at 11:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

Have you tried looking at ConfigurationSection? you may want to check this article in msdn. Create Custom Configuration Sections Using ConfigurationSection http://msdn.microsoft.com/en-us/library/2tw134k3(v=vs.100).aspx

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.