1 Commits
Author SHA1 Message Date
BlubbFish f9216f7bc9 [NF] Gibt nun bei ini-Dateien ganze Bereiche zurück 2017-08-09 15:45:42 +00:00
2 changed files with 9 additions and 2 deletions
+7
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("[")) {
+2 -2
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")]