Menu

#47 IniConfigSource.Configs to follow CaseSensitive

open
nobody
INI (26)
5
2008-03-03
2008-03-03
Dan Dragut
No

Hi,

Any chance you could make the IniConfigSource.Configs to follow the CaseSensitive property? The CaseSensitive property only seems to work on Config.Get() methods, it would be nice to work for config sections as well.

Slightly offTopic, while looking at the case-sensitive example on the web (http://nini.sourceforge.net/Manual/NiniManual-4.htm#IniFiles), I've noticed that is a bit incorrect.

IConfigSource source = new IniConfigSource();
source.Load("MyApp.ini");
source.CaseSensitive = false;

should be:

IniConfigSource source = new IniConfigSource();
[...]

Thanks,
Dan

Discussion


Log in to post a comment.