diff --git a/InIReader.cs b/InIReader.cs index 49155c0..3c2bcfe 100644 --- a/InIReader.cs +++ b/InIReader.cs @@ -74,14 +74,17 @@ namespace BlubbFish.Utils public List GetSections() { - return this.cont.Keys.ToList(); + return this.cont.Keys.ToList(); } public Dictionary GetSection(String section) { if(this.cont.Keys.Contains(section)) { return this.cont[section]; } - return new Dictionary(); + if(this.cont.Keys.Contains("["+section+"]")) { + return this.cont["[" + section + "]"]; + } + return new Dictionary(); } public String GetValue(String section, String key) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 73ace8a..28db545 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Utils")] -[assembly: AssemblyCopyright("Copyright © 2014 - 24.04.2017")] +[assembly: AssemblyCopyright("Copyright © 2014 - 24.09.2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -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.5.0")] -[assembly: AssemblyFileVersion("1.0.5.0")] +[assembly: AssemblyVersion("1.0.5.1")] +[assembly: AssemblyFileVersion("1.0.5.1")] diff --git a/bin/Release/Utils.dll b/bin/Release/Utils.dll index aee4a30..9647ff5 100644 Binary files a/bin/Release/Utils.dll and b/bin/Release/Utils.dll differ