[NF] Gibt nun bei ini-Dateien ganze Bereiche zurück

This commit is contained in:
BlubbFish 2017-08-09 15:45:42 +00:00
parent 61a7f1ff7b
commit f9216f7bc9
2 changed files with 9 additions and 2 deletions

View File

@ -77,6 +77,13 @@ namespace BlubbFish.Utils
return this.cont.Keys.ToList<String>();
}
public Dictionary<String, String> GetSection(String section) {
if(this.cont.Keys.Contains(section)) {
return this.cont[section];
}
return new Dictionary<string, string>();
}
public String GetValue(String section, String key)
{
if (!section.StartsWith("[")) {

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.1")]
[assembly: AssemblyFileVersion("1.0.4.1")]
[assembly: AssemblyVersion("1.0.5.0")]
[assembly: AssemblyFileVersion("1.0.5.0")]