[NF] Inireader vereinfachungen

This commit is contained in:
2017-09-24 20:33:46 +00:00
parent 4a91406d4f
commit ad2d41dde0
3 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -74,14 +74,17 @@ namespace BlubbFish.Utils
public List<String> GetSections()
{
return this.cont.Keys.ToList<String>();
return this.cont.Keys.ToList();
}
public Dictionary<String, String> GetSection(String section) {
if(this.cont.Keys.Contains(section)) {
return this.cont[section];
}
return new Dictionary<string, string>();
if(this.cont.Keys.Contains("["+section+"]")) {
return this.cont["[" + section + "]"];
}
return new Dictionary<String, String>();
}
public String GetValue(String section, String key)